ProtocolBuffers.csproj 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Google.ProtocolBuffers</RootNamespace>
  12. <AssemblyName>Google.ProtocolBuffers</AssemblyName>
  13. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.Data" />
  36. <Reference Include="System.Xml" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Include="AbstractBuilder.cs" />
  40. <Compile Include="AbstractMessage.cs" />
  41. <Compile Include="ByteString.cs" />
  42. <Compile Include="CodedInputStream.cs" />
  43. <Compile Include="CodedOutputStream.cs" />
  44. <Compile Include="Collections\Dictionaries.cs" />
  45. <Compile Include="Collections\Lists.cs" />
  46. <Compile Include="Collections\ReadOnlyDictionary.cs" />
  47. <Compile Include="DescriptorProtos\Autogenerated.cs" />
  48. <Compile Include="DescriptorProtos\IDescriptorProto.cs" />
  49. <Compile Include="DescriptorProtos\PartialClasses.cs" />
  50. <Compile Include="Descriptors\DescriptorBase.cs" />
  51. <Compile Include="Descriptors\EnumDescriptor.cs" />
  52. <Compile Include="Descriptors\EnumValueDescriptor.cs" />
  53. <Compile Include="Descriptors\FieldDescriptor.cs" />
  54. <Compile Include="Descriptors\FieldMappingAttribute.cs" />
  55. <Compile Include="Descriptors\FieldType.cs" />
  56. <Compile Include="Descriptors\FileDescriptor.cs" />
  57. <Compile Include="Descriptors\IndexedDescriptorBase.cs" />
  58. <Compile Include="Descriptors\MappedType.cs" />
  59. <Compile Include="Descriptors\MessageDescriptor.cs" />
  60. <Compile Include="Descriptors\ServiceDescriptor.cs" />
  61. <Compile Include="ExtensionInfo.cs" />
  62. <Compile Include="ExtensionRegistry.cs" />
  63. <Compile Include="FieldAccess\Delegates.cs" />
  64. <Compile Include="FieldAccess\IFieldAccessor.cs" />
  65. <Compile Include="FieldAccess\FieldAccessorTable.cs" />
  66. <Compile Include="FieldSet.cs" />
  67. <Compile Include="GeneratedBuilder.cs" />
  68. <Compile Include="GeneratedExtension.cs" />
  69. <Compile Include="GeneratedMessage.cs" />
  70. <Compile Include="IBuilder.cs" />
  71. <Compile Include="IMessage.cs" />
  72. <Compile Include="InvalidProtocolBufferException.cs" />
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. <Compile Include="TextFormat.cs" />
  75. <Compile Include="UninitializedMessageException.cs" />
  76. <Compile Include="UnknownField.cs" />
  77. <Compile Include="UnknownFieldSet.cs" />
  78. <Compile Include="WireFormat.cs" />
  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>