Mark van Renswoude
8e0edabeed
Implemented two examples. More needed to get rid of the mess that is the current "Test" project.
21 lines
678 B
XML
21 lines
678 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<RootNamespace>_01_PublishSubscribe</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SimpleInjector" Version="4.6.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\ExampleHelper.cs\ExampleLib.csproj" />
|
|
<ProjectReference Include="..\..\Messaging.TapetiExample\Messaging.TapetiExample.csproj" />
|
|
<ProjectReference Include="..\..\Tapeti.SimpleInjector\Tapeti.SimpleInjector.csproj" />
|
|
<ProjectReference Include="..\..\Tapeti\Tapeti.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|