1<?xml version="1.0" encoding="utf-8"?> 2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <PropertyGroup> 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0.30729</ProductVersion> 7 <SchemaVersion>2.0</SchemaVersion> 8 <ProjectGuid>{A31F5FB2-4FF3-432A-B35B-5CD203606311}</ProjectGuid> 9 <OutputType>Exe</OutputType> 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 <RootNamespace>Google.Protobuf.Examples.AddressBook</RootNamespace> 12 <AssemblyName>AddressBook</AssemblyName> 13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 14 <FileAlignment>512</FileAlignment> 15 <StartupObject>Google.Protobuf.Examples.AddressBook.Program</StartupObject> 16 <TargetFrameworkProfile> 17 </TargetFrameworkProfile> 18 </PropertyGroup> 19 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 20 <DebugSymbols>true</DebugSymbols> 21 <DebugType>full</DebugType> 22 <Optimize>false</Optimize> 23 <OutputPath>bin\Debug</OutputPath> 24 <IntermediateOutputPath>obj\Debug\</IntermediateOutputPath> 25 <DefineConstants>DEBUG;TRACE</DefineConstants> 26 <ErrorReport>prompt</ErrorReport> 27 <WarningLevel>4</WarningLevel> 28 <NoStdLib>true</NoStdLib> 29 <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies> 30 <Prefer32Bit>false</Prefer32Bit> 31 </PropertyGroup> 32 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 33 <DebugType>pdbonly</DebugType> 34 <Optimize>true</Optimize> 35 <OutputPath>bin\Release</OutputPath> 36 <IntermediateOutputPath>obj\Release\</IntermediateOutputPath> 37 <DefineConstants>TRACE</DefineConstants> 38 <ErrorReport>prompt</ErrorReport> 39 <WarningLevel>4</WarningLevel> 40 <NoStdLib>true</NoStdLib> 41 <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies> 42 <Prefer32Bit>false</Prefer32Bit> 43 </PropertyGroup> 44 <ItemGroup> 45 <Reference Include="mscorlib" /> 46 <Reference Include="System" /> 47 <Reference Include="System.Data" /> 48 <Reference Include="System.Xml" /> 49 </ItemGroup> 50 <ItemGroup> 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" /> 56 <Compile Include="Properties\AssemblyInfo.cs" /> 57 </ItemGroup> 58 <ItemGroup> 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" /> 66 </ItemGroup> 67 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 68 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 69 Other similar extension points exist, see Microsoft.Common.targets. 70 <Target Name="BeforeBuild"> 71 </Target> 72 <Target Name="AfterBuild"> 73 </Target> 74 --> 75</Project>