ProtoBench.csproj 3.9 KB

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