Google.Protobuf.Test.csproj 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net451;netcoreapp2.1</TargetFrameworks>
  4. <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
  5. <SignAssembly>true</SignAssembly>
  6. <PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
  7. <IsPackable>False</IsPackable>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
  14. <PackageReference Include="NUnit" Version="3.9.0" />
  15. <PackageReference Include="NUnit3TestAdapter" Version="3.9.0" />
  16. </ItemGroup>
  17. <!-- Needed for the net45 build to work on Unix. See https://github.com/dotnet/designs/pull/33 -->
  18. <ItemGroup>
  19. <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2" PrivateAssets="All" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <EmbeddedResource Include="testprotos.pb" />
  23. </ItemGroup>
  24. </Project>