21 lines
681 B
XML
21 lines
681 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||
|
<RootNamespace>_07_ParallelizationTest</RootNamespace>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="SimpleInjector" Version="5.3.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Examples\ExampleLib\ExampleLib.csproj" />
|
||
|
<ProjectReference Include="..\Examples\Messaging.TapetiExample\Messaging.TapetiExample.csproj" />
|
||
|
<ProjectReference Include="..\Tapeti.SimpleInjector\Tapeti.SimpleInjector.csproj" />
|
||
|
<ProjectReference Include="..\Tapeti\Tapeti.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|