1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <OutputType>Exe</OutputType> 5 <TargetFrameworks>net451;netcoreapp3.1</TargetFrameworks> 6 <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile> 7 <SignAssembly>true</SignAssembly> 8 <IsPackable>False</IsPackable> 9 </PropertyGroup> 10 11 <ItemGroup> 12 <ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" /> 13 </ItemGroup> 14 15 <ItemGroup> 16 <PackageReference Include="NUnit" Version="3.6.1" /> 17 <PackageReference Include="NUnitLite" Version="3.6.1" /> 18 </ItemGroup> 19 20 <!-- Needed for the net45 build to work on Unix. See https://github.com/dotnet/designs/pull/33 --> 21 <ItemGroup> 22 <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2" PrivateAssets="All" /> 23 </ItemGroup> 24 25</Project> 26