You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net451;netcoreapp2.1</TargetFrameworks>
|
|
<AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
|
|
<SignAssembly>true</SignAssembly>
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
|
<IsPackable>False</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
|
|
<PackageReference Include="NUnit" Version="3.9.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.9.0" />
|
|
</ItemGroup>
|
|
|
|
<!--
|
|
- Override target frameworks on non-Windows to just .NET Core
|
|
- Doing this conditionally in the initial PropertyGroup confuses
|
|
- Visual Studio.
|
|
-->
|
|
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
|
|
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="testprotos.pb" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|