ProtocolBuffers.Test.csproj 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>{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. </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="nunit.framework, Version=2.2.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
  35. <SpecificVersion>False</SpecificVersion>
  36. <HintPath>lib\nunit.framework.dll</HintPath>
  37. </Reference>
  38. <Reference Include="Rhino.Mocks, Version=3.5.0.2, Culture=neutral, PublicKeyToken=0b3305902db7183f, processorArchitecture=MSIL">
  39. <SpecificVersion>False</SpecificVersion>
  40. <HintPath>lib\Rhino.Mocks.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="System.Data" />
  44. <Reference Include="System.Xml" />
  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="Properties\AssemblyInfo.cs" />
  52. <Compile Include="ReflectionTester.cs" />
  53. <Compile Include="TestProtos\UnitTestEmbedOptimizeForProtoFile.cs" />
  54. <Compile Include="TestProtos\UnitTestImportProtoFile.cs" />
  55. <Compile Include="TestProtos\UnitTestMessageSetProtoFile.cs" />
  56. <Compile Include="TestProtos\UnitTestOptimizeForProtoFile.cs" />
  57. <Compile Include="TestProtos\UnitTestProtoFile.cs" />
  58. <Compile Include="TestUtil.cs" />
  59. <Compile Include="WireFormatTest.cs" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
  63. <Project>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</Project>
  64. <Name>ProtocolBuffers</Name>
  65. </ProjectReference>
  66. </ItemGroup>
  67. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  68. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  69. Other similar extension points exist, see Microsoft.Common.targets.
  70. <Target Name="BeforeBuild">
  71. </Target>
  72. <Target Name="AfterBuild">
  73. </Target>
  74. -->
  75. </Project>