OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso
ft.com/developer/msbuild/2003"> |
| 3 <PropertyGroup> |
| 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
| 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
| 6 <ProductVersion>10.0.0</ProductVersion> |
| 7 <SchemaVersion>2.0</SchemaVersion> |
| 8 <ProjectGuid>{BF62FE08-373A-43D6-9D73-41CAA38B7011}</ProjectGuid> |
| 9 <OutputType>Exe</OutputType> |
| 10 <RootNamespace>Grpc.Examples.MathServer</RootNamespace> |
| 11 <AssemblyName>MathServer</AssemblyName> |
| 12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> |
| 13 </PropertyGroup> |
| 14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
| 15 <DebugSymbols>true</DebugSymbols> |
| 16 <DebugType>full</DebugType> |
| 17 <Optimize>false</Optimize> |
| 18 <OutputPath>bin\Debug</OutputPath> |
| 19 <DefineConstants>DEBUG;</DefineConstants> |
| 20 <ErrorReport>prompt</ErrorReport> |
| 21 <WarningLevel>4</WarningLevel> |
| 22 </PropertyGroup> |
| 23 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU'
"> |
| 24 <DebugType>pdbonly</DebugType> |
| 25 <Optimize>true</Optimize> |
| 26 <OutputPath>bin\Release</OutputPath> |
| 27 <ErrorReport>prompt</ErrorReport> |
| 28 <WarningLevel>4</WarningLevel> |
| 29 </PropertyGroup> |
| 30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseSigned|An
yCPU' "> |
| 31 <DebugType>pdbonly</DebugType> |
| 32 <Optimize>true</Optimize> |
| 33 <OutputPath>bin\ReleaseSigned</OutputPath> |
| 34 <ErrorReport>prompt</ErrorReport> |
| 35 <WarningLevel>4</WarningLevel> |
| 36 <SignAssembly>True</SignAssembly> |
| 37 <AssemblyOriginatorKeyFile>..\keys\Grpc.snk</AssemblyOriginatorKeyFile> |
| 38 </PropertyGroup> |
| 39 <ItemGroup> |
| 40 <Reference Include="System" /> |
| 41 </ItemGroup> |
| 42 <ItemGroup> |
| 43 <Compile Include="..\Grpc.Core\Version.cs"> |
| 44 <Link>Version.cs</Link> |
| 45 </Compile> |
| 46 <Compile Include="Properties\AssemblyInfo.cs" /> |
| 47 <Compile Include="MathServer.cs" /> |
| 48 </ItemGroup> |
| 49 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
| 50 <ItemGroup> |
| 51 <ProjectReference Include="..\Grpc.Core\Grpc.Core.csproj"> |
| 52 <Project>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</Project> |
| 53 <Name>Grpc.Core</Name> |
| 54 </ProjectReference> |
| 55 <ProjectReference Include="..\Grpc.Examples\Grpc.Examples.csproj"> |
| 56 <Project>{7DC1433E-3225-42C7-B7EA-546D56E27A4B}</Project> |
| 57 <Name>Grpc.Examples</Name> |
| 58 </ProjectReference> |
| 59 </ItemGroup> |
| 60 </Project> |
OLD | NEW |