ProtoBench.csproj 3.79 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>9.0.30729</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{C7A4A435-2813-41C8-AA87-BD914BA5223D}</ProjectGuid>
    <OutputType>Exe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Google.ProtocolBuffers.ProtoBench</RootNamespace>
    <AssemblyName>ProtoBench</AssemblyName>
13
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14
    <FileAlignment>512</FileAlignment>
15
    <TargetFrameworkProfile>Client</TargetFrameworkProfile>
16 17 18 19 20
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
21 22
    <OutputPath>bin\Debug</OutputPath>
    <IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
23 24 25
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
26 27 28
    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
    <NoStdLib>true</NoStdLib>
    <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
29 30 31 32
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
33 34
    <OutputPath>bin\Release</OutputPath>
    <IntermediateOutputPath>obj\Release\</IntermediateOutputPath>
35 36 37
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
38 39 40
    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
    <NoStdLib>true</NoStdLib>
    <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
41 42
  </PropertyGroup>
  <ItemGroup>
43
    <Reference Include="mscorlib" />
44 45
    <Reference Include="System" />
    <Reference Include="System.Data" />
46
    <Reference Include="System.Runtime.Serialization" />
47 48 49
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
50 51
    <Compile Include="GoogleSize.cs" />
    <Compile Include="GoogleSpeed.cs" />
52 53
    <Compile Include="Program.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
54 55 56
    <Compile Include="Unittest.cs" />
    <Compile Include="UnittestImport.cs" />
    <Compile Include="UnittestImportPublic.cs" />
57 58
  </ItemGroup>
  <ItemGroup>
59 60 61 62 63
    <ProjectReference Include="..\ProtocolBuffers.Serialization\ProtocolBuffers.Serialization.csproj">
      <Project>{231391AF-449C-4a39-986C-AD7F270F4750}</Project>
      <Name>ProtocolBuffers.Serialization</Name>
      <Private>True</Private>
    </ProjectReference>
64 65 66
    <ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
      <Project>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</Project>
      <Name>ProtocolBuffers</Name>
67
      <Private>True</Private>
68 69 70
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
71
    <None Include="app.config" />
72 73 74 75 76 77
    <None Include="google_message1.dat">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
    <None Include="google_message2.dat">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
78
  </ItemGroup>
79 80 81
  <ItemGroup>
    <Folder Include="TestProtos\" />
  </ItemGroup>
82
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
83 84 85 86 87 88
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
89
  -->
90
</Project>