ProtocolBuffers.csproj 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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.30729</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. <SignAssembly>true</SignAssembly>
  16. <AssemblyOriginatorKeyFile>Properties\Google.ProtocolBuffers.snk</AssemblyOriginatorKeyFile>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Data" />
  38. <Reference Include="System.Xml" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="AbstractBuilder.cs" />
  42. <Compile Include="AbstractMessage.cs" />
  43. <Compile Include="ByteString.cs" />
  44. <Compile Include="Delegates.cs" />
  45. <Compile Include="CodedInputStream.cs" />
  46. <Compile Include="CodedOutputStream.cs" />
  47. <Compile Include="Collections\Dictionaries.cs" />
  48. <Compile Include="Collections\Lists.cs" />
  49. <Compile Include="Collections\ReadOnlyDictionary.cs" />
  50. <Compile Include="DescriptorProtos\DescriptorProtoFile.cs" />
  51. <Compile Include="DescriptorProtos\IDescriptorProto.cs" />
  52. <Compile Include="DescriptorProtos\PartialClasses.cs" />
  53. <Compile Include="Descriptors\DescriptorBase.cs" />
  54. <Compile Include="Descriptors\DescriptorPool.cs" />
  55. <Compile Include="Descriptors\DescriptorUtil.cs" />
  56. <Compile Include="Descriptors\DescriptorValidationException.cs" />
  57. <Compile Include="Descriptors\EnumDescriptor.cs" />
  58. <Compile Include="Descriptors\EnumValueDescriptor.cs" />
  59. <Compile Include="Descriptors\FieldDescriptor.cs" />
  60. <Compile Include="Descriptors\FieldMappingAttribute.cs" />
  61. <Compile Include="Descriptors\FieldType.cs" />
  62. <Compile Include="Descriptors\FileDescriptor.cs" />
  63. <Compile Include="Descriptors\IDescriptor.cs" />
  64. <Compile Include="Descriptors\IndexedDescriptorBase.cs" />
  65. <Compile Include="Descriptors\MappedType.cs" />
  66. <Compile Include="Descriptors\MessageDescriptor.cs" />
  67. <Compile Include="Descriptors\MethodDescriptor.cs" />
  68. <Compile Include="Descriptors\PackageDescriptor.cs" />
  69. <Compile Include="Descriptors\ServiceDescriptor.cs" />
  70. <Compile Include="DynamicMessage.cs" />
  71. <Compile Include="ExtendableBuilder.cs" />
  72. <Compile Include="ExtendableMessage.cs" />
  73. <Compile Include="ExtensionInfo.cs" />
  74. <Compile Include="ExtensionRegistry.cs" />
  75. <Compile Include="FieldAccess\Delegates.cs" />
  76. <Compile Include="FieldAccess\ReflectionUtil.cs" />
  77. <Compile Include="FieldAccess\SingleEnumAccessor.cs" />
  78. <Compile Include="FieldAccess\SingleMessageAccessor.cs" />
  79. <Compile Include="FieldAccess\SinglePrimitiveAccessor.cs" />
  80. <Compile Include="FieldAccess\RepeatedPrimitiveAccessor.cs" />
  81. <Compile Include="FieldAccess\RepeatedEnumAccessor.cs" />
  82. <Compile Include="FieldAccess\IFieldAccessor.cs" />
  83. <Compile Include="FieldAccess\FieldAccessorTable.cs" />
  84. <Compile Include="FieldAccess\RepeatedMessageAccessor.cs" />
  85. <Compile Include="FieldSet.cs" />
  86. <Compile Include="GeneratedBuilder.cs" />
  87. <Compile Include="GeneratedSingleExtension.cs" />
  88. <Compile Include="GeneratedMessage.cs" />
  89. <Compile Include="GeneratedRepeatException.cs" />
  90. <Compile Include="IBuilder.cs" />
  91. <Compile Include="GeneratedExtensionBase.cs" />
  92. <Compile Include="IMessage.cs" />
  93. <Compile Include="InvalidProtocolBufferException.cs" />
  94. <Compile Include="IRpcChannel.cs" />
  95. <Compile Include="IRpcController.cs" />
  96. <Compile Include="IService.cs" />
  97. <Compile Include="MessageStreamIterator.cs" />
  98. <Compile Include="MessageStreamWriter.cs" />
  99. <Compile Include="Properties\AssemblyInfo.cs" />
  100. <Compile Include="RpcUtil.cs" />
  101. <Compile Include="TextFormat.cs" />
  102. <Compile Include="TextGenerator.cs" />
  103. <Compile Include="TextTokenizer.cs" />
  104. <Compile Include="UninitializedMessageException.cs" />
  105. <Compile Include="UnknownField.cs" />
  106. <Compile Include="UnknownFieldSet.cs" />
  107. <Compile Include="WireFormat.cs" />
  108. </ItemGroup>
  109. <ItemGroup>
  110. <None Include="Properties\Google.ProtocolBuffers.snk" />
  111. </ItemGroup>
  112. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  113. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  114. Other similar extension points exist, see Microsoft.Common.targets.
  115. <Target Name="BeforeBuild">
  116. </Target>
  117. <Target Name="AfterBuild">
  118. </Target>
  119. -->
  120. </Project>