blob: 06dda010fac65ea93493ab2a5d1a784a36e1bcf6 [file] [log] [blame]
csharptest68d831e2011-05-03 13:47:34 -05001<?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 <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>
csharptest5a80c372011-05-20 11:11:01 -050016 <AssemblyOriginatorKeyFile>..\..\keys\Google.ProtocolBuffers.snk</AssemblyOriginatorKeyFile>
csharptest68d831e2011-05-03 13:47:34 -050017 <FileUpgradeFlags>
18 </FileUpgradeFlags>
19 <UpgradeBackupLocation>
20 </UpgradeBackupLocation>
21 <OldToolsVersion>3.5</OldToolsVersion>
22 <PublishUrl>publish\</PublishUrl>
23 <Install>true</Install>
24 <InstallFrom>Disk</InstallFrom>
25 <UpdateEnabled>false</UpdateEnabled>
26 <UpdateMode>Foreground</UpdateMode>
27 <UpdateInterval>7</UpdateInterval>
28 <UpdateIntervalUnits>Days</UpdateIntervalUnits>
29 <UpdatePeriodically>false</UpdatePeriodically>
30 <UpdateRequired>false</UpdateRequired>
31 <MapFileExtensions>true</MapFileExtensions>
32 <ApplicationRevision>0</ApplicationRevision>
33 <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
34 <IsWebBootstrapper>false</IsWebBootstrapper>
35 <UseApplicationTrust>false</UseApplicationTrust>
36 <BootstrapperEnabled>true</BootstrapperEnabled>
csharptest27bfcc52011-06-02 12:04:06 -050037 <TrackFileAccess>false</TrackFileAccess>
csharptest68d831e2011-05-03 13:47:34 -050038 </PropertyGroup>
39 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
40 <DebugSymbols>true</DebugSymbols>
41 <DebugType>full</DebugType>
42 <Optimize>false</Optimize>
43 <OutputPath>bin\Debug\</OutputPath>
44 <DefineConstants>DEBUG;TRACE</DefineConstants>
45 <ErrorReport>prompt</ErrorReport>
46 <WarningLevel>4</WarningLevel>
47 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
48 </PropertyGroup>
49 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
50 <DebugType>pdbonly</DebugType>
51 <Optimize>true</Optimize>
52 <OutputPath>bin\Release\</OutputPath>
53 <DefineConstants>TRACE</DefineConstants>
54 <ErrorReport>prompt</ErrorReport>
55 <WarningLevel>4</WarningLevel>
56 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
57 </PropertyGroup>
58 <ItemGroup>
59 <Reference Include="nunit.framework, Version=2.2.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
60 <SpecificVersion>False</SpecificVersion>
61 <HintPath>..\..\lib\NUnit 2.2.8.0\nunit.framework.dll</HintPath>
62 </Reference>
63 <Reference Include="Rhino.Mocks, Version=3.5.0.2, Culture=neutral, PublicKeyToken=0b3305902db7183f, processorArchitecture=MSIL">
64 <SpecificVersion>False</SpecificVersion>
65 <HintPath>..\..\lib\Rhino.Mocks.dll</HintPath>
66 </Reference>
67 <Reference Include="mscorlib" />
68 <Reference Include="System" />
69 <Reference Include="System.Data" />
70 <Reference Include="System.Xml" />
71 </ItemGroup>
72 <ItemGroup>
73 <Compile Include="AbstractMessageTest.cs" />
74 <Compile Include="ByteStringTest.cs" />
75 <Compile Include="CodedInputStreamTest.cs" />
76 <Compile Include="CodedOutputStreamTest.cs" />
77 <Compile Include="Collections\PopsicleListTest.cs" />
csharptest27bfcc52011-06-02 12:04:06 -050078 <Compile Include="CompatTests\BinaryCompatibilityTests.cs" />
79 <Compile Include="CompatTests\CompatibilityTests.cs" />
80 <Compile Include="CompatTests\TestResources.Designer.cs">
81 <AutoGen>True</AutoGen>
82 <DesignTime>True</DesignTime>
83 <DependentUpon>TestResources.resx</DependentUpon>
84 </Compile>
85 <Compile Include="CompatTests\TextCompatibilityTests.cs" />
csharptest68d831e2011-05-03 13:47:34 -050086 <Compile Include="CSharpOptionsTest.cs" />
87 <Compile Include="DescriptorsTest.cs" />
88 <Compile Include="Descriptors\MessageDescriptorTest.cs" />
89 <Compile Include="DynamicMessageTest.cs" />
90 <Compile Include="ExtendableMessageTest.cs" />
91 <Compile Include="GeneratedMessageTest.cs" />
92 <Compile Include="MessageStreamIteratorTest.cs" />
93 <Compile Include="MessageStreamWriterTest.cs" />
94 <Compile Include="MessageTest.cs" />
95 <Compile Include="MessageUtilTest.cs" />
96 <Compile Include="NameHelpersTest.cs" />
97 <Compile Include="Properties\AssemblyInfo.cs" />
98 <Compile Include="ReflectionTester.cs" />
99 <Compile Include="ServiceTest.cs" />
100 <Compile Include="TestProtos\UnitTestCSharpOptionsProtoFile.cs" />
101 <Compile Include="TestProtos\UnitTestCustomOptionsProtoFile.cs" />
102 <Compile Include="TestProtos\UnitTestEmbedOptimizeForProtoFile.cs" />
103 <Compile Include="TestProtos\UnitTestEmptyProtoFile.cs" />
csharptestf1816be2011-05-19 12:01:16 -0500104 <Compile Include="TestProtos\UnitTestGenericServices.cs" />
csharptest27bfcc52011-06-02 12:04:06 -0500105 <Compile Include="TestProtos\UnitTestGoogleSizeProtoFile.cs" />
106 <Compile Include="TestProtos\UnitTestGoogleSpeedProtoFile.cs" />
csharptest68d831e2011-05-03 13:47:34 -0500107 <Compile Include="TestProtos\UnitTestImportLiteProtoFile.cs" />
108 <Compile Include="TestProtos\UnitTestImportProtoFile.cs" />
109 <Compile Include="TestProtos\UnitTestMessageSetProtoFile.cs" />
110 <Compile Include="TestProtos\UnitTestNoGenericServicesProtoFile.cs" />
111 <Compile Include="TestProtos\UnitTestOptimizeForProtoFile.cs" />
112 <Compile Include="TestProtos\UnitTestProtoFile.cs" />
113 <Compile Include="TestProtos\UnitTestRpcInterop.cs" />
csharptest27bfcc52011-06-02 12:04:06 -0500114 <Compile Include="TestProtos\UnitTestXmlSerializerTestProtoFile.cs" />
csharptest68d831e2011-05-03 13:47:34 -0500115 <Compile Include="TestRpcGenerator.cs" />
116 <Compile Include="TestUtil.cs" />
117 <Compile Include="TextFormatTest.cs" />
118 <Compile Include="UnknownFieldSetTest.cs" />
119 <Compile Include="WireFormatTest.cs" />
120 </ItemGroup>
121 <ItemGroup>
122 <ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
123 <Project>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</Project>
124 <Name>ProtocolBuffers</Name>
125 </ProjectReference>
126 </ItemGroup>
127 <ItemGroup>
csharptest68d831e2011-05-03 13:47:34 -0500128 <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
129 <Visible>False</Visible>
130 <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
131 <Install>false</Install>
132 </BootstrapperPackage>
133 <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
134 <Visible>False</Visible>
135 <ProductName>.NET Framework 3.5 SP1</ProductName>
136 <Install>true</Install>
137 </BootstrapperPackage>
138 <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
139 <Visible>False</Visible>
140 <ProductName>Windows Installer 3.1</ProductName>
141 <Install>true</Install>
142 </BootstrapperPackage>
143 </ItemGroup>
csharptest27bfcc52011-06-02 12:04:06 -0500144 <ItemGroup>
145 <None Include="CompatTests\google_message1.dat" />
146 <None Include="CompatTests\google_message2.dat" />
147 </ItemGroup>
148 <ItemGroup>
149 <EmbeddedResource Include="CompatTests\TestResources.resx">
150 <Generator>ResXFileCodeGenerator</Generator>
151 <LastGenOutput>TestResources.Designer.cs</LastGenOutput>
152 </EmbeddedResource>
153 </ItemGroup>
csharptest68d831e2011-05-03 13:47:34 -0500154 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(Configuration)' == 'Debug' " />
155 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(Configuration)' == 'Release' " />
csharptest5a80c372011-05-20 11:11:01 -0500156 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
157 Other similar extension points exist, see Microsoft.Common.targets.
158 <Target Name="BeforeBuild">
159 </Target>
160 <Target Name="AfterBuild">
161 </Target>
csharptest68d831e2011-05-03 13:47:34 -0500162 -->
Jon Skeet68036862008-10-22 13:30:34 +0100163</Project>