Zebus.MessageDsl.Build
1.5.0
dotnet add package Zebus.MessageDsl.Build --version 1.5.0
NuGet\Install-Package Zebus.MessageDsl.Build -Version 1.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Zebus.MessageDsl.Build" Version="1.5.0"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Zebus.MessageDsl.Build --version 1.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Zebus.MessageDsl.Build, 1.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Zebus.MessageDsl.Build as a Cake Addin #addin nuget:?package=Zebus.MessageDsl.Build&version=1.5.0 // Install Zebus.MessageDsl.Build as a Cake Tool #tool nuget:?package=Zebus.MessageDsl.Build&version=1.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Zebus Message DSL
This is a DSL which simplifies the writing of ProtoBuf contracts for Zebus.
See the GitHub repository for more information.
Example
Input file:
SomeMessage(int foo, string[] bar)
Generated code:
[ProtoContract]
public sealed partial class SomeMessage : IEvent
{
[ProtoMember(1, IsRequired = true)]
public int Foo { get; private set; }
[ProtoMember(2, IsRequired = false)]
public string[] Bar { get; private set; }
private SomeMessage()
{
Bar = Array.Empty<string>();
}
public SomeMessage(int foo, string[] bar)
{
Foo = foo;
Bar = bar;
}
}
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.5.0 | 465 | 4/16/2024 |
1.5.0-pre4 | 516 | 1/12/2024 |
1.4.0 | 1,815 | 10/29/2020 |
1.3.0 | 1,582 | 12/16/2019 |
1.2.2 | 555 | 11/8/2019 |
1.2.1 | 624 | 9/25/2019 |
1.2.0 | 542 | 9/6/2019 |
1.1.0 | 568 | 9/5/2019 |
1.0.1 | 552 | 8/19/2019 |
1.0.0 | 651 | 5/29/2019 |
0.4.1 | 641 | 5/15/2019 |
0.4.0 | 627 | 4/17/2019 |
0.3.3 | 655 | 3/5/2019 |
0.3.2 | 681 | 2/15/2019 |
0.3.1 | 663 | 2/14/2019 |
0.3.0 | 638 | 2/14/2019 |
0.2.0 | 651 | 2/14/2019 |
0.1.0 | 654 | 2/12/2019 |