ProtoBench.csproj 3.67 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
    <NoStdLib>true</NoStdLib>
    <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
28 29 30 31
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
32 33
    <OutputPath>bin\Release</OutputPath>
    <IntermediateOutputPath>obj\Release\</IntermediateOutputPath>
34 35 36
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
37 38
    <NoStdLib>true</NoStdLib>
    <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
39 40
  </PropertyGroup>
  <ItemGroup>
41
    <Reference Include="mscorlib" />
42 43
    <Reference Include="System" />
    <Reference Include="System.Data" />
44
    <Reference Include="System.Runtime.Serialization" />
45 46 47
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
48 49
    <Compile Include="GoogleSize.cs" />
    <Compile Include="GoogleSpeed.cs" />
50 51
    <Compile Include="Program.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
52 53 54
    <Compile Include="Unittest.cs" />
    <Compile Include="UnittestImport.cs" />
    <Compile Include="UnittestImportPublic.cs" />
55 56
  </ItemGroup>
  <ItemGroup>
57 58 59 60 61
    <ProjectReference Include="..\ProtocolBuffers.Serialization\ProtocolBuffers.Serialization.csproj">
      <Project>{231391AF-449C-4a39-986C-AD7F270F4750}</Project>
      <Name>ProtocolBuffers.Serialization</Name>
      <Private>True</Private>
    </ProjectReference>
62 63 64
    <ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
      <Project>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</Project>
      <Name>ProtocolBuffers</Name>
65
      <Private>True</Private>
66 67 68
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
69
    <None Include="app.config" />
70 71 72 73 74 75
    <None Include="google_message1.dat">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
    <None Include="google_message2.dat">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
76
  </ItemGroup>
77 78 79
  <ItemGroup>
    <Folder Include="TestProtos\" />
  </ItemGroup>
80
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
81 82 83 84 85 86
  <!-- 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>
87
  -->
88
</Project>