1ffe3c632Sopenharmony_ci<Project Sdk="Microsoft.NET.Sdk">
2ffe3c632Sopenharmony_ci
3ffe3c632Sopenharmony_ci  <!--
4ffe3c632Sopenharmony_ci    This TestProtos project is kept separate from the original test project for many reasons.
5ffe3c632Sopenharmony_ci    It allows us to make sure code can compile on a separate compiler version, different frameworks,
6ffe3c632Sopenharmony_ci    and without the internal visibility from the test project (all of which have caused issues in the past).
7ffe3c632Sopenharmony_ci  -->
8ffe3c632Sopenharmony_ci  <PropertyGroup>
9ffe3c632Sopenharmony_ci    <TargetFrameworks>net45;netstandard1.1;netstandard2.0</TargetFrameworks>
10ffe3c632Sopenharmony_ci    <LangVersion>3.0</LangVersion>
11ffe3c632Sopenharmony_ci    <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
12ffe3c632Sopenharmony_ci    <SignAssembly>true</SignAssembly>
13ffe3c632Sopenharmony_ci    <PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
14ffe3c632Sopenharmony_ci    <IsPackable>False</IsPackable>
15ffe3c632Sopenharmony_ci  </PropertyGroup>
16ffe3c632Sopenharmony_ci
17ffe3c632Sopenharmony_ci  <!-- Needed for the net45 build to work on Unix. See https://github.com/dotnet/designs/pull/33 -->
18ffe3c632Sopenharmony_ci  <ItemGroup>
19ffe3c632Sopenharmony_ci    <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2" PrivateAssets="All" />
20ffe3c632Sopenharmony_ci  </ItemGroup>
21ffe3c632Sopenharmony_ci  
22ffe3c632Sopenharmony_ci  <ItemGroup>
23ffe3c632Sopenharmony_ci    <ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" />
24ffe3c632Sopenharmony_ci  </ItemGroup>
25ffe3c632Sopenharmony_ci
26ffe3c632Sopenharmony_ci</Project>
27