-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.0.31606.5 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Buildersoft.Messaging", "src\Buildersoft.Messaging\Buildersoft.Messaging.csproj", "{CF4B3FF7-FDFC-43A8-8065-D3CB3DE2CF2A}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{CF4B3FF7-FDFC-43A8-8065-D3CB3DE2CF2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{CF4B3FF7-FDFC-43A8-8065-D3CB3DE2CF2A}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{CF4B3FF7-FDFC-43A8-8065-D3CB3DE2CF2A}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{CF4B3FF7-FDFC-43A8-8065-D3CB3DE2CF2A}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {FDC80544-A249-4D35-813F-0FEF2C9730D5} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
What is Buildersoft Messaging? | ||
============ | ||
|
||
Buildersoft Universal Messaging library is a generic client api for Andy X, Pulsar and Kafka. | ||
|
||
## Get Started | ||
|
||
|
||
|
||
## How to Engage, Contribute, and Give Feedback | ||
|
||
Some of the best ways to contribute are to try things out, file issues, join in design conversations, | ||
and make pull-requests. | ||
|
||
## Reporting security issues and bugs | ||
|
||
Security issues and bugs should be reported privately, via email, [email protected]. You should receive a response within 24 hours. | ||
|
||
## Related projects | ||
|
||
These are some other repos for related projects: | ||
|
||
* [Andy X Dashboard](https://github.com/buildersoftdev/andyxdashboard) - Dashboard for Andy X Node | ||
* [Andy X Terminal](https://github.com/buildersoftdev/andyxterminal) - Manage all resources of Andy X | ||
|
||
## Code of conduct | ||
|
||
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. | ||
|
||
For more information, see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct). | ||
|
||
## Support | ||
Let's do it together! You can support us by clicking on the link below! | ||
|
||
[![alt text](https://img.buymeacoffee.com/api/?url=aHR0cHM6Ly9pbWcuYnV5bWVhY29mZmVlLmNvbS9hcGkvP3VybD1hSFIwY0hNNkx5OWpaRzR1WW5WNWJXVmhZMjltWm1WbExtTnZiUzkxY0d4dllXUnpMM0J5YjJacGJHVmZjR2xqZEhWeVpYTXZNakF5TVM4d09DOWxObVUwTkRWaU1UVXhPVGRqWm1JNFlXWTVZalV5TWpjek5qSXlaV05rTnk1d2JtYz0mc2l6ZT0zMDAmbmFtZT1BbmR5K1g=&creator=Andy+X&is_creating=free%20and%20open%20source%20Distributed%20Streaming%20Platform&design_code=1&design_color=%2379D6B5&slug=buildersoft)](https://www.buymeacoffee.com/buildersoft). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using System; | ||
|
||
namespace Buildersoft.Messaging | ||
{ | ||
public class Class1 | ||
{ | ||
// This library will connect you to Andy X, Kafka and Pulsar! | ||
} | ||
} |