• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<Project Sdk="Microsoft.NET.Sdk">
2
3  <PropertyGroup>
4    <OutputType>Exe</OutputType>
5    <TargetFrameworks>net462;net6.0</TargetFrameworks>
6    <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
7    <SignAssembly>true</SignAssembly>
8    <IsPackable>False</IsPackable>
9    <LangVersion>8.0</LangVersion>
10  </PropertyGroup>
11
12  <ItemGroup>
13    <ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" />
14  </ItemGroup>
15
16  <ItemGroup>
17    <PackageReference Include="NUnit" Version="3.6.1" />
18    <PackageReference Include="NUnitLite" Version="3.6.1" />
19  </ItemGroup>
20
21  <!-- Needed for the netfx build to work on Unix. See https://github.com/dotnet/designs/pull/33 -->
22  <ItemGroup>
23    <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="All" />
24  </ItemGroup>
25
26</Project>
27