ProtocolBuffersLite.csproj 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>{6969BDCE-D925-43F3-94AC-A531E6DF2591}</ProjectGuid>
  11. <OutputType>Library</OutputType>
  12. <AppDesignerFolder>Properties</AppDesignerFolder>
  13. <RootNamespace>Google.ProtocolBuffers</RootNamespace>
  14. <AssemblyName>Google.ProtocolBuffersLite</AssemblyName>
  15. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  16. <FileAlignment>512</FileAlignment>
  17. <SignAssembly>true</SignAssembly>
  18. <AssemblyOriginatorKeyFile>..\..\keys\Google.ProtocolBuffers.snk</AssemblyOriginatorKeyFile>
  19. <OldToolsVersion>3.5</OldToolsVersion>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>bin\Debug\</OutputPath>
  26. <DocumentationFile>$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
  27. <NoWarn>1591, 1570, 1571, 1572, 1573, 1574</NoWarn>
  28. <DefineConstants>DEBUG;TRACE;LITE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. <NoStdLib>true</NoStdLib>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  34. <DebugType>pdbonly</DebugType>
  35. <Optimize>true</Optimize>
  36. <OutputPath>bin\Release\</OutputPath>
  37. <DocumentationFile>$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
  38. <NoWarn>1591, 1570, 1571, 1572, 1573, 1574</NoWarn>
  39. <DefineConstants>TRACE;LITE</DefineConstants>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. <NoStdLib>true</NoStdLib>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Reference Include="mscorlib" />
  46. <Reference Include="System" />
  47. <Reference Include="System.Xml" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="AbstractBuilderLite.cs" />
  51. <Compile Include="AbstractMessageLite.cs" />
  52. <Compile Include="ByteArray.cs" />
  53. <Compile Include="CodedOutputStream.ComputeSize.cs" />
  54. <Compile Include="Collections\Dictionaries.cs" />
  55. <Compile Include="Collections\Enumerables.cs" />
  56. <Compile Include="Collections\IPopsicleList.cs" />
  57. <Compile Include="Collections\Lists.cs" />
  58. <Compile Include="Collections\PopsicleList.cs" />
  59. <Compile Include="Collections\ReadOnlyDictionary.cs" />
  60. <Compile Include="CustomSerialization.cs" />
  61. <Compile Include="Descriptors\FieldMappingAttribute.cs" />
  62. <Compile Include="Descriptors\FieldType.cs" />
  63. <Compile Include="Descriptors\MappedType.cs" />
  64. <Compile Include="EnumLite.cs" />
  65. <Compile Include="ExtendableBuilderLite.cs" />
  66. <Compile Include="ExtendableMessageLite.cs" />
  67. <Compile Include="FieldSet.cs" />
  68. <Compile Include="GeneratedBuilderLite.cs" />
  69. <Compile Include="GeneratedExtensionLite.cs" />
  70. <Compile Include="GeneratedMessageLite.cs" />
  71. <Compile Include="ICodedInputStream.cs" />
  72. <Compile Include="ICodedOutputStream.cs" />
  73. <Compile Include="IRpcDispatch.cs" />
  74. <Compile Include="Properties\AssemblyInfo.cs" />
  75. <Compile Include="ByteString.cs" />
  76. <Compile Include="CodedInputStream.cs" />
  77. <Compile Include="CodedOutputStream.cs" />
  78. <Compile Include="ExtensionRegistryLite.cs" />
  79. <Compile Include="IBuilderLite.cs" />
  80. <Compile Include="IMessageLite.cs" />
  81. <Compile Include="InvalidProtocolBufferException.cs" />
  82. <Compile Include="SortedList.cs" />
  83. <Compile Include="ThrowHelper.cs" />
  84. <Compile Include="UninitializedMessageException.cs" />
  85. <Compile Include="WireFormat.cs" />
  86. </ItemGroup>
  87. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>