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>{7DC1433E-3225-42C7-B7EA-546D56E27A4B}</ProjectGuid> |
| 9 <OutputType>Library</OutputType> |
| 10 <RootNamespace>Grpc.Examples</RootNamespace> |
| 11 <AssemblyName>Grpc.Examples</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="Google.Protobuf, Version=3.0.0.0, Culture=neutral, Publi
cKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> |
| 41 <SpecificVersion>False</SpecificVersion> |
| 42 <HintPath>..\packages\Google.Protobuf.3.0.0-beta2\lib\portable-net45+netco
re45+wpa81+wp8\Google.Protobuf.dll</HintPath> |
| 43 </Reference> |
| 44 <Reference Include="System" /> |
| 45 <Reference Include="System.Data.Linq" /> |
| 46 <Reference Include="System.Interactive.Async, Version=1.2.0.0, Culture=neutr
al, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> |
| 47 <SpecificVersion>False</SpecificVersion> |
| 48 <HintPath>..\packages\Ix-Async.1.2.5\lib\net45\System.Interactive.Async.dl
l</HintPath> |
| 49 </Reference> |
| 50 </ItemGroup> |
| 51 <ItemGroup> |
| 52 <Compile Include="..\Grpc.Core\Version.cs"> |
| 53 <Link>Version.cs</Link> |
| 54 </Compile> |
| 55 <Compile Include="Properties\AssemblyInfo.cs" /> |
| 56 <Compile Include="Math.cs" /> |
| 57 <Compile Include="MathGrpc.cs" /> |
| 58 <Compile Include="MathServiceImpl.cs" /> |
| 59 <Compile Include="MathExamples.cs" /> |
| 60 </ItemGroup> |
| 61 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
| 62 <ItemGroup> |
| 63 <ProjectReference Include="..\Grpc.Core\Grpc.Core.csproj"> |
| 64 <Project>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</Project> |
| 65 <Name>Grpc.Core</Name> |
| 66 </ProjectReference> |
| 67 </ItemGroup> |
| 68 <ItemGroup> |
| 69 <None Include="packages.config" /> |
| 70 </ItemGroup> |
| 71 </Project> |
OLD | NEW |