ProtocolBuffers.Test.csproj 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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>{DD01ED24-3750-4567-9A23-1DB676A15610}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Google.ProtocolBuffers</RootNamespace>
  12. <AssemblyName>Google.ProtocolBuffers.Test</AssemblyName>
  13. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SignAssembly>true</SignAssembly>
  16. <AssemblyOriginatorKeyFile>Properties\Google.ProtocolBuffers.Test.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="nunit.framework, Version=2.2.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
  37. <SpecificVersion>False</SpecificVersion>
  38. <HintPath>..\lib\nunit.framework.dll</HintPath>
  39. </Reference>
  40. <Reference Include="Rhino.Mocks, Version=3.5.0.2, Culture=neutral, PublicKeyToken=0b3305902db7183f, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>..\lib\Rhino.Mocks.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="AbstractMessageTest.cs" />
  48. <Compile Include="ByteStringTest.cs" />
  49. <Compile Include="CodedInputStreamTest.cs" />
  50. <Compile Include="CodedOutputStreamTest.cs" />
  51. <Compile Include="Collections\PopsicleListTest.cs" />
  52. <Compile Include="DescriptorsTest.cs" />
  53. <Compile Include="DynamicMessageTest.cs" />
  54. <Compile Include="GeneratedMessageTest.cs" />
  55. <Compile Include="MessageStreamIteratorTest.cs" />
  56. <Compile Include="MessageStreamWriterTest.cs" />
  57. <Compile Include="MessageTest.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. <Compile Include="ReflectionTester.cs" />
  60. <Compile Include="ServiceTest.cs" />
  61. <Compile Include="TestProtos\EnumWithNoOuter.cs" />
  62. <Compile Include="TestProtos\MessageWithNoOuter.cs" />
  63. <Compile Include="TestProtos\MultiFileProto.cs" />
  64. <Compile Include="TestProtos\ServiceWithNoOuter.cs" />
  65. <Compile Include="TestProtos\UnitTestEmbedOptimizeForProtoFile.cs" />
  66. <Compile Include="TestProtos\UnitTestImportProtoFile.cs" />
  67. <Compile Include="TestProtos\UnitTestMessageSetProtoFile.cs" />
  68. <Compile Include="TestProtos\UnitTestOptimizeForProtoFile.cs" />
  69. <Compile Include="TestProtos\UnitTestProtoFile.cs" />
  70. <Compile Include="TestUtil.cs" />
  71. <Compile Include="TextFormatTest.cs" />
  72. <Compile Include="UnknownFieldSetTest.cs" />
  73. <Compile Include="WireFormatTest.cs" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
  77. <Project>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</Project>
  78. <Name>ProtocolBuffers</Name>
  79. </ProjectReference>
  80. </ItemGroup>
  81. <ItemGroup>
  82. <None Include="Properties\Google.ProtocolBuffers.Test.snk" />
  83. </ItemGroup>
  84. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  85. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  86. Other similar extension points exist, see Microsoft.Common.targets.
  87. <Target Name="BeforeBuild">
  88. </Target>
  89. <Target Name="AfterBuild">
  90. </Target>
  91. -->
  92. </Project>