26 lines
855 B
XML
26 lines
855 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFrameworks>net451;netcoreapp3.1</TargetFrameworks>
|
|||
|
<AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
|
|||
|
<SignAssembly>true</SignAssembly>
|
|||
|
<IsPackable>False</IsPackable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="NUnit" Version="3.6.1" />
|
|||
|
<PackageReference Include="NUnitLite" Version="3.6.1" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<!-- Needed for the net45 build to work on Unix. See https://github.com/dotnet/designs/pull/33 -->
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2" PrivateAssets="All" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|