1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <Import Project="..\Grpc.Core\Version.csproj.include" /> 4 <Import Project="..\Grpc.Core\Common.csproj.include" /> 5 6 <PropertyGroup> 7 <TargetFrameworks>net45;netcoreapp1.0</TargetFrameworks> 8 <AssemblyName>Grpc.Examples.MathServer</AssemblyName> 9 <OutputType>Exe</OutputType> 10 <PackageId>Grpc.Examples.MathServer</PackageId> 11 <TreatWarningsAsErrors>true</TreatWarningsAsErrors> 12 </PropertyGroup> 13 14 <ItemGroup> 15 <ProjectReference Include="../Grpc.Examples/Grpc.Examples.csproj" /> 16 </ItemGroup> 17 18 <ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> 19 <Reference Include="System" /> 20 <Reference Include="Microsoft.CSharp" /> 21 </ItemGroup> 22 23 <ItemGroup> 24 <Compile Include="..\Grpc.Core\Version.cs" /> 25 </ItemGroup> 26 27</Project> 28