Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: third_party/protobuf/csharp/src/AddressBook/AddressBook.csproj

Issue 1842653006: Update //third_party/protobuf to version 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microso ft.com/developer/msbuild/2003"> 2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microso ft.com/developer/msbuild/2003">
3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Com mon.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Mi crosoft.Common.props')" />
4 <PropertyGroup> 3 <PropertyGroup>
5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7 <ProjectGuid>{998C0725-F123-4ED3-9D44-12C1945F00D1}</ProjectGuid> 6 <ProductVersion>9.0.30729</ProductVersion>
8 <OutputType>Library</OutputType> 7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{A31F5FB2-4FF3-432A-B35B-5CD203606311}</ProjectGuid>
9 <OutputType>Exe</OutputType>
9 <AppDesignerFolder>Properties</AppDesignerFolder> 10 <AppDesignerFolder>Properties</AppDesignerFolder>
10 <RootNamespace>LowLevel</RootNamespace> 11 <RootNamespace>Google.Protobuf.Examples.AddressBook</RootNamespace>
11 <AssemblyName>LowLevel</AssemblyName> 12 <AssemblyName>AddressBook</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 <FileAlignment>512</FileAlignment> 14 <FileAlignment>512</FileAlignment>
15 <StartupObject>Google.Protobuf.Examples.AddressBook.Program</StartupObject>
16 <TargetFrameworkProfile>
17 </TargetFrameworkProfile>
14 </PropertyGroup> 18 </PropertyGroup>
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 19 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16 <DebugSymbols>true</DebugSymbols> 20 <DebugSymbols>true</DebugSymbols>
17 <DebugType>full</DebugType> 21 <DebugType>full</DebugType>
18 <Optimize>false</Optimize> 22 <Optimize>false</Optimize>
19 <OutputPath>bin\Debug\</OutputPath> 23 <OutputPath>bin\Debug</OutputPath>
24 <IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
20 <DefineConstants>DEBUG;TRACE</DefineConstants> 25 <DefineConstants>DEBUG;TRACE</DefineConstants>
21 <ErrorReport>prompt</ErrorReport> 26 <ErrorReport>prompt</ErrorReport>
22 <WarningLevel>4</WarningLevel> 27 <WarningLevel>4</WarningLevel>
28 <NoStdLib>true</NoStdLib>
29 <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
30 <Prefer32Bit>false</Prefer32Bit>
23 </PropertyGroup> 31 </PropertyGroup>
24 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 32 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25 <DebugType>pdbonly</DebugType> 33 <DebugType>pdbonly</DebugType>
26 <Optimize>true</Optimize> 34 <Optimize>true</Optimize>
27 <OutputPath>bin\Release\</OutputPath> 35 <OutputPath>bin\Release</OutputPath>
36 <IntermediateOutputPath>obj\Release\</IntermediateOutputPath>
28 <DefineConstants>TRACE</DefineConstants> 37 <DefineConstants>TRACE</DefineConstants>
29 <ErrorReport>prompt</ErrorReport> 38 <ErrorReport>prompt</ErrorReport>
30 <WarningLevel>4</WarningLevel> 39 <WarningLevel>4</WarningLevel>
31 </PropertyGroup> 40 <NoStdLib>true</NoStdLib>
32 <PropertyGroup> 41 <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
33 <SignAssembly>true</SignAssembly> 42 <Prefer32Bit>false</Prefer32Bit>
34 </PropertyGroup>
35 <PropertyGroup>
36 <AssemblyOriginatorKeyFile>
37 </AssemblyOriginatorKeyFile>
38 </PropertyGroup> 43 </PropertyGroup>
39 <ItemGroup> 44 <ItemGroup>
45 <Reference Include="mscorlib" />
40 <Reference Include="System" /> 46 <Reference Include="System" />
41 <Reference Include="System.Core" />
42 <Reference Include="System.Xml.Linq" />
43 <Reference Include="System.Data.DataSetExtensions" />
44 <Reference Include="Microsoft.CSharp" />
45 <Reference Include="System.Data" /> 47 <Reference Include="System.Data" />
46 <Reference Include="System.Xml" /> 48 <Reference Include="System.Xml" />
47 </ItemGroup> 49 </ItemGroup>
48 <ItemGroup> 50 <ItemGroup>
49 <Compile Include="NativeMethods.cs" /> 51 <Compile Include="AddPerson.cs" />
52 <Compile Include="Addressbook.cs" />
53 <Compile Include="SampleUsage.cs" />
54 <Compile Include="ListPeople.cs" />
55 <Compile Include="Program.cs" />
50 <Compile Include="Properties\AssemblyInfo.cs" /> 56 <Compile Include="Properties\AssemblyInfo.cs" />
51 <Compile Include="Types.cs" />
52 </ItemGroup> 57 </ItemGroup>
53 <ItemGroup> 58 <ItemGroup>
54 <None Include="Key.snk" /> 59 <ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj">
60 <Project>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</Project>
61 <Name>Google.Protobuf</Name>
62 </ProjectReference>
63 </ItemGroup>
64 <ItemGroup>
65 <None Include="app.config" />
55 </ItemGroup> 66 </ItemGroup>
56 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 67 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
57 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it. 68 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.
58 Other similar extension points exist, see Microsoft.Common.targets. 69 Other similar extension points exist, see Microsoft.Common.targets.
59 <Target Name="BeforeBuild"> 70 <Target Name="BeforeBuild">
60 </Target> 71 </Target>
61 <Target Name="AfterBuild"> 72 <Target Name="AfterBuild">
62 </Target> 73 </Target>
63 --> 74 -->
64 </Project> 75 </Project>
OLDNEW
« no previous file with comments | « third_party/protobuf/csharp/src/AddressBook/AddPerson.cs ('k') | third_party/protobuf/csharp/src/AddressBook/Addressbook.cs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698