| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectName>Protocol Buffers</ProjectName>
- <BuildConfiguration></BuildConfiguration>
- <!--Directory Paths-->
- <ProjectDirectory>$(MSBuildProjectDirectory)\..</ProjectDirectory>
- <ProtosDirectory>$(ProjectDirectory)\protos</ProtosDirectory>
- <BuildTempDirectory>$(ProjectDirectory)\build_temp\$(BuildConfiguration)</BuildTempDirectory>
- <BuildOutputDirectory>$(ProjectDirectory)\build_output</BuildOutputDirectory>
-
- <!--File Paths-->
- <SolutionFile>$(ProjectDirectory)\src\ProtocolBuffers.sln</SolutionFile>
-
- <!--Tool Paths-->
- <ProtocExePath>$(ProjectDirectory)\lib\protoc.exe</ProtocExePath>
- <ProtogenExePath>$(ProjectDirectory)\src\ProtoGen\bin\$(BuildConfiguration)\protogen.exe</ProtogenExePath>
- <NUnitExePath>$(ProjectDirectory)\lib\NUnit 2.2.8.0\nunit-console.exe</NUnitExePath>
- </PropertyGroup>
- <Import Project="Common.targets"/>
- <ItemGroup>
- <WorkingDirectories Include="$(BuildTempDirectory)" />
- <WorkingDirectories Include="$(BuildOutputDirectory)" />
- <Protos Include="$(ProtosDirectory)\google\protobuf\descriptor.proto" />
- <Protos Include="$(ProtosDirectory)\google\protobuf\csharp_options.proto" />
- <Protos Include="$(ProtosDirectory)\google\protobuf\unittest.proto" />
- <Protos Include="$(ProtosDirectory)\google\protobuf\unittest_csharp_options.proto" />
- <Protos Include="$(ProtosDirectory)\google\protobuf\unittest_custom_options.proto" />
- <Protos Include="$(ProtosDirectory)\google\protobuf\unittest_embed_optimize_for.proto" />
- <Protos Include="$(ProtosDirectory)\google\protobuf\unittest_import.proto" />
- <Protos Include="$(ProtosDirectory)\google\protobuf\unittest_mset.proto" />
- <Protos Include="$(ProtosDirectory)\google\protobuf\unittest_optimize_for.proto" />
- <Protos Include="$(ProtosDirectory)\tutorial\addressbook.proto" />
-
- <TestContainer Include="$(ProjectDirectory)\src\ProtocolBuffers.Test\bin\$(BuildConfiguration)\Google.ProtocolBuffers.Test.dll" />
- <TestContainer Include="$(ProjectDirectory)\src\ProtoGen.Test\bin\$(BuildConfiguration)\Google.ProtocolBuffers.ProtoGen.Test.dll" />
- </ItemGroup>
- <!-- targets -->
- <Target Name="Build" DependsOnTargets="_Compile;_Test" />
- <Target Name="RunBenchmarks" DependsOnTargets="_Compile" />
- <Target Name="GeneratePackage" />
- </Project>
|