Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/BuildGraph/BuildGraph.Automation.csproj
Brent Pease e1162a17f7 + Standarize on AnyCPU for all platforms
+ Remove other non AnyCPU platforms
 + Ensure all AnyCPU targets actually use the AnyCPU architecture
 + Clean up inconsistent references and paths

#rb ben.marsh
#lockdown ben.marsh

[CL 3125996 by Brent Pease in Main branch]
2016-09-14 19:52:44 -04:00

117 lines
5.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Development</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A002361E-37F9-4124-AF82-CF0D393CB928}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AutomationTool</RootNamespace>
<AssemblyName>BuildGraph.Automation</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\..\Binaries\DotNET\AutomationScripts\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Development|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\..\Binaries\DotNET\AutomationScripts\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DocumentationFile>..\..\..\..\Binaries\DotNET\AutomationScripts\BuildGraph.Automation.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Ionic.Zip.Reduced">
<HintPath>..\..\..\..\Binaries\DotNET\Ionic.Zip.Reduced.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="OneSky, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\..\..\Binaries\DotNET\OneSky.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Core" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.IO.Compression.FileSystem" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\DotNETCommon\MetaData.cs">
<Link>Properties\MetaData.cs</Link>
</Compile>
<Compile Include="Agent.cs" />
<Compile Include="Badge.cs" />
<Compile Include="BuildGraph.cs" />
<Compile Include="Graph.cs" />
<Compile Include="LockFile.cs" />
<Compile Include="Node.cs" />
<Compile Include="Report.cs" />
<Compile Include="Task.cs" />
<Compile Include="JobContext.cs" />
<Compile Include="ManualTrigger.cs" />
<Compile Include="Condition.cs" />
<Compile Include="Schema.cs" />
<Compile Include="Script.cs" />
<Compile Include="Tasks\AgeStoreTask.cs" />
<Compile Include="Tasks\CommandletTask.cs" />
<Compile Include="Tasks\CsCompileTask.cs" />
<Compile Include="Tasks\SymStoreTask.cs" />
<Compile Include="Tasks\TagReceiptTask.cs" />
<Compile Include="Tasks\PakFileTask.cs" />
<Compile Include="Tasks\RenameTask.cs" />
<Compile Include="Tasks\SpawnTask.cs" />
<Compile Include="Tasks\LogTask.cs" />
<Compile Include="Tasks\SubmitTask.cs" />
<Compile Include="Tasks\TagTask.cs" />
<Compile Include="Tasks\CommandTask.cs" />
<Compile Include="Tasks\CompileTask.cs" />
<Compile Include="Tasks\CookTask.cs" />
<Compile Include="Tasks\CopyTask.cs" />
<Compile Include="Tasks\DeleteTask.cs" />
<Compile Include="Tasks\SignTask.cs" />
<Compile Include="Tasks\StageTask.cs" />
<Compile Include="Tasks\StripTask.cs" />
<Compile Include="Tasks\SetVersionTask.cs" />
<Compile Include="Tasks\UnzipTask.cs" />
<Compile Include="Tasks\ZipTask.cs" />
<Compile Include="TempStorage.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\UnrealBuildTool\UnrealBuildTool.csproj">
<Project>{fd7c5e1a-cfe4-4fd5-a525-1eb1599a39ac}</Project>
<Name>UnrealBuildTool</Name>
<Private>False</Private>
</ProjectReference>
<ProjectReference Include="..\AutomationUtils\AutomationUtils.Automation.csproj">
<Project>{2c96a7f2-b1a3-4258-8e0a-e588ff41a53e}</Project>
<Name>AutomationUtils.Automation</Name>
<Private>False</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>