ProtoDump.csproj 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>{D7282E99-2DC3-405B-946F-177DB2FD2AE2}</ProjectGuid>
  11. <OutputType>Exe</OutputType>
  12. <AppDesignerFolder>Properties</AppDesignerFolder>
  13. <RootNamespace>Google.Protobuf.ProtoDump</RootNamespace>
  14. <AssemblyName>ProtoDump</AssemblyName>
  15. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  16. <FileAlignment>512</FileAlignment>
  17. <TargetFrameworkProfile>Client</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. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>bin\Release</OutputPath>
  35. <IntermediateOutputPath>obj\Release\</IntermediateOutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. <NoStdLib>true</NoStdLib>
  40. <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
  41. </PropertyGroup>
  42. <ItemGroup>
  43. <Reference Include="mscorlib" />
  44. <Reference Include="System" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="Program.cs" />
  48. <Compile Include="Properties\AssemblyInfo.cs" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
  52. <Project>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</Project>
  53. <Name>ProtocolBuffers</Name>
  54. </ProjectReference>
  55. </ItemGroup>
  56. <ItemGroup>
  57. <None Include="app.config" />
  58. </ItemGroup>
  59. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  60. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  61. Other similar extension points exist, see Microsoft.Common.targets.
  62. <Target Name="BeforeBuild">
  63. </Target>
  64. <Target Name="AfterBuild">
  65. </Target>
  66. -->
  67. </Project>