|
|
@@ -0,0 +1,47 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
+
|
|
|
+ <PropertyGroup>
|
|
|
+ <ProjectName>Protocol Buffers</ProjectName>
|
|
|
+ <BuildConfiguration>Debug</BuildConfiguration>
|
|
|
+
|
|
|
+ <!--Directory Paths-->
|
|
|
+ <ProjectDirectory>$(MSBuildProjectDirectory)\..</ProjectDirectory>
|
|
|
+ <BuildTempDirectory>$(ProjectDirectory)\_tmp</BuildTempDirectory>
|
|
|
+
|
|
|
+ <!--File Paths-->
|
|
|
+ <SolutionFile>$(ProjectDirectory)\src\ProtocolBuffers.sln</SolutionFile>
|
|
|
+ </PropertyGroup>
|
|
|
+
|
|
|
+ <Import Project="Common.targets"/>
|
|
|
+
|
|
|
+ <ItemGroup>
|
|
|
+ <WorkingDirectories Include="$(BuildTempDirectory)" />
|
|
|
+
|
|
|
+ <Solution Include="$(SolutionFile)">
|
|
|
+ <Configuration>$(BuildConfiguration)</Configuration>
|
|
|
+ <Platform>Any CPU</Platform>
|
|
|
+ </Solution>
|
|
|
+ <Solution Include="$(SolutionFile)">
|
|
|
+ <Configuration>Debug</Configuration>
|
|
|
+ <Platform>Any CPU</Platform>
|
|
|
+ </Solution>
|
|
|
+ <Solution Include="$(SolutionFile)">
|
|
|
+ <Configuration>Release</Configuration>
|
|
|
+ <Platform>Any CPU</Platform>
|
|
|
+ </Solution>
|
|
|
+ <Solution Include="$(SolutionFile)">
|
|
|
+ <Configuration>Silverlight2</Configuration>
|
|
|
+ <Platform>Any CPU</Platform>
|
|
|
+ </Solution>
|
|
|
+ <!--<Solution Include="$(ProjectDirectory)\src\ProtocolBuffers/ProtocolBuffersCF.csproj">
|
|
|
+ <Configuration>$(BuildConfiguration)</Configuration>
|
|
|
+ <Platform>AnyCPU</Platform>
|
|
|
+ </Solution>-->
|
|
|
+
|
|
|
+ </ItemGroup>
|
|
|
+
|
|
|
+ <!-- targets -->
|
|
|
+ <Target Name="Build" DependsOnTargets="_Compile" />
|
|
|
+
|
|
|
+</Project>
|