ProtocolBuffers.Serialization.csproj 4.0 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. <TargetFrameworkClass>CLIENTPROFILE</TargetFrameworkClass>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProductVersion>9.0.30729</ProductVersion>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <ProjectGuid>{231391AF-449C-4A39-986C-AD7F270F4750}</ProjectGuid>
  10. <OutputType>Library</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>Google.ProtocolBuffers.Serialization</RootNamespace>
  13. <AssemblyName>Google.ProtocolBuffers.Serialization</AssemblyName>
  14. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  15. <FileAlignment>512</FileAlignment>
  16. <SignAssembly>true</SignAssembly>
  17. <AssemblyOriginatorKeyFile>..\..\keys\Google.ProtocolBuffers.snk</AssemblyOriginatorKeyFile>
  18. <OldToolsVersion>3.5</OldToolsVersion>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DocumentationFile>$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
  26. <NoWarn>1591, 1570, 1571, 1572, 1573, 1574</NoWarn>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <NoStdLib>true</NoStdLib>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DocumentationFile>$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
  37. <NoWarn>1591, 1570, 1571, 1572, 1573, 1574</NoWarn>
  38. <DefineConstants>TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. <NoStdLib>true</NoStdLib>
  42. </PropertyGroup>
  43. <PropertyGroup Condition=" '$(TargetFrameworkVersion)' == 'v2.0' ">
  44. <DefineConstants>NET20;$(DefineConstants)</DefineConstants>
  45. </PropertyGroup>
  46. <ItemGroup>
  47. <Reference Include="mscorlib" />
  48. <Reference Include="System" />
  49. <Reference Include="System.Xml" />
  50. <Reference Include="System.Core" Condition="'$(TargetFrameworkVersion)' != 'v2.0'" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="Extensions.cs" />
  54. <Compile Include="Http\FormUrlEncodedReader.cs" />
  55. <Compile Include="Http\MessageFormatFactory.cs" />
  56. <Compile Include="Http\MessageFormatOptions.cs" />
  57. <Compile Include="Properties\AssemblyInfo.cs" />
  58. <Compile Include="AbstractReader.cs" />
  59. <Compile Include="AbstractTextReader.cs" />
  60. <Compile Include="AbstractTextWriter.cs" />
  61. <Compile Include="AbstractWriter.cs" />
  62. <Compile Include="DictionaryReader.cs" />
  63. <Compile Include="DictionaryWriter.cs" />
  64. <Compile Include="JsonFormatReader.cs" />
  65. <Compile Include="JsonFormatWriter.cs" />
  66. <Compile Include="JsonTextCursor.cs" />
  67. <Compile Include="RecursionLimitExceeded.cs" />
  68. <Compile Include="XmlFormatReader.cs" />
  69. <Compile Include="XmlFormatWriter.cs" />
  70. <Compile Include="XmlReaderOptions.cs" />
  71. <Compile Include="XmlWriterOptions.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
  75. <Project>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</Project>
  76. <Name>ProtocolBuffers</Name>
  77. <Private>False</Private>
  78. </ProjectReference>
  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>