Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ImportedProperty>Value</ImportedProperty>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,5 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Item Include="a;b;c" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,6 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<A>A</A>
</PropertyGroup>
<Import Project="RelativeImport2.csproj" />
</Project>

View File

@@ -0,0 +1,5 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<A>B</A>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,3 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="SelfImport.csproj"/>
</Project>

View File

@@ -0,0 +1,13 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Target Name="GetFoo" Outputs="Out" Returns="Bar" />
<Target Name="Main">
<MSBuild Projects="TestReturns.csproj" Targets="GetFoo">
<Output TaskParameter="TargetOutputs" ItemName="FooResult"/>
</MSBuild>
<Message Text="Result: %(FooResult.Identity)" />
</Target>
</Project>

File diff suppressed because it is too large Load Diff