2021-08-09 10:39:09 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2016-03-13 18:53:13 -04:00
|
|
|
<PropertyGroup>
|
2022-03-28 18:25:19 -04:00
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2016-09-14 19:52:44 -04:00
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Development</Configuration>
|
2016-03-13 18:53:13 -04:00
|
|
|
<OutputType>Library</OutputType>
|
2020-12-02 06:57:13 -04:00
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
|
|
|
|
<Configurations>Debug;Release;Development</Configurations>
|
2016-03-13 18:53:13 -04:00
|
|
|
<RootNamespace>AutomationTool</RootNamespace>
|
|
|
|
|
<AssemblyName>BuildGraph.Automation</AssemblyName>
|
2018-11-14 19:05:13 -05:00
|
|
|
<WarningsNotAsErrors>612,618</WarningsNotAsErrors>
|
2020-12-02 06:57:13 -04:00
|
|
|
<OutputPath>..\..\..\..\Binaries\DotNET\AutomationTool\AutomationScripts\BuildGraph</OutputPath>
|
2016-03-13 18:53:13 -04:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-12-02 14:54:53 -04:00
|
|
|
<DebugType>pdbonly</DebugType>
|
2016-03-13 18:53:13 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Development|AnyCPU' ">
|
2020-12-02 06:57:13 -04:00
|
|
|
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
|
2020-12-02 14:54:53 -04:00
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
2016-03-13 18:53:13 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2020-12-21 19:26:55 -04:00
|
|
|
<Reference Include="fastJSON">
|
|
|
|
|
<HintPath>..\..\..\..\Binaries\ThirdParty\fastJSON\netstandard2.0\fastJSON.dll</HintPath>
|
|
|
|
|
</Reference>
|
2016-03-13 18:53:13 -04:00
|
|
|
<Reference Include="Ionic.Zip.Reduced">
|
|
|
|
|
<HintPath>..\..\..\..\Binaries\DotNET\Ionic.Zip.Reduced.dll</HintPath>
|
|
|
|
|
<Private>False</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2021-08-10 11:08:41 -04:00
|
|
|
<Compile Include="..\..\Shared\MetaData.cs">
|
2016-03-13 18:53:13 -04:00
|
|
|
<Link>Properties\MetaData.cs</Link>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2021-11-09 12:36:25 -05:00
|
|
|
<ProjectReference Include="..\..\Shared\EpicGames.BuildGraph\EpicGames.BuildGraph.csproj" />
|
2020-12-21 23:07:37 -04:00
|
|
|
<ProjectReference Include="..\..\Shared\EpicGames.Core\EpicGames.Core.csproj" PrivateAssets="All"><Private>false</Private></ProjectReference>
|
2021-08-09 10:39:09 -04:00
|
|
|
<ProjectReference Include="..\..\Shared\EpicGames.Jupiter\EpicGames.Jupiter.csproj" PrivateAssets="All" />
|
2020-12-02 06:57:13 -04:00
|
|
|
<ProjectReference Include="..\..\UnrealBuildTool\UnrealBuildTool.csproj" PrivateAssets="All"><Private>false</Private></ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\AutomationUtils\AutomationUtils.Automation.csproj" PrivateAssets="All"><Private>false</Private></ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
|
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
|
|
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
|
|
|
|
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
|
2016-03-13 18:53:13 -04:00
|
|
|
</ItemGroup>
|
2018-02-27 17:30:35 -05:00
|
|
|
</Project>
|