Mark van Renswoude
5020e3a82b
Got lost in the move to .NET Standard, all DLL's were version 1.0 causing some issues
23 lines
620 B
XML
23 lines
620 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<Version>2.0.0</Version>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<NoWarn>1701;1702</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.6.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Tapeti.Flow\Tapeti.Flow.csproj" />
|
|
<ProjectReference Include="..\Tapeti\Tapeti.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|