Getting started
Add NuGet package
All libraries that are part of the PPWCode.NServiceBus.Host.I are published on NuGet.
The following packages are available:
-
PPWCode.NServiceBus.Host.I, base library
-
PPWCode.NServiceBus.Host.I.EntityFrameworkCore, support for Entity Framework Core
-
PPWCode.NServiceBus.Host.I.NHibernate, support for NHibernate
You can use your IDE to add it as a dependency to your project, or manually add it in the .csproj file. This would look similar to the following:
Entity Framework Core
<Project Sdk="Microsoft.NET.Sdk">
<!-- ... -->
<ItemGroup>
<!-- nuget package dependencies -->
<PackageReference Include="PPWCode.NServiceBus.Host.I" Version="1.0.0" />
<PackageReference Include="PPWCode.NServiceBus.Host.I.EntityFrameworkCore" Version="1.0.0" />
</ItemGroup>
<!-- ... -->
</Project>
NHibernate
<Project Sdk="Microsoft.NET.Sdk">
<!-- ... -->
<ItemGroup>
<!-- nuget package dependencies -->
<PackageReference Include="PPWCode.NServiceBus.Host.I" Version="1.0.0" />
<PackageReference Include="PPWCode.NServiceBus.Host.I.NHibernate" Version="1.0.0" />
</ItemGroup>
<!-- ... -->
</Project>