You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Also cleaned up some output assemblies, preventing all transative references from being outputed (as we assume they build directly to the output directory instead). Unfortunatley the UBT references still cause tranastive dependencies to be copied as this is also a executable that needs to work outside of UAT as well, we should eventually move all UBT referenced code into BuildUtilities. #rb none #fyi ben.marsh [CL 14775171 by Joakim Lindqvist in ue5-main branch]
69 lines
3.5 KiB
XML
69 lines
3.5 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<!-- Set a custom temp directory so we can live side by side with the .net framework output -->
|
|
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)obj-core\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
|
|
<BaseOutputPath>$(MSBuildThisFileDirectory)bin-core\$(MSBuildProjectName)\</BaseOutputPath>
|
|
</PropertyGroup>
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
|
|
<PropertyGroup>
|
|
<!--<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>-->
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Development</Configuration>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>AutomationUtils.Automation</RootNamespace>
|
|
<AssemblyName>AutomationUtils.Automation</AssemblyName>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
<OldToolsVersion>2.0</OldToolsVersion>
|
|
<OutputPath>..\..\..\..\Binaries\DotNET\AutomationTool</OutputPath>
|
|
<Configurations>Debug;Release;Development</Configurations>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Ionic.Zip.Reduced">
|
|
<HintPath>..\..\..\..\Binaries\DotNET\Ionic.Zip.Reduced.dll</HintPath>
|
|
<Private>False</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
|
<!-- We do not output these binaries to Binaries as it targets multiple frameworks. They would have overloaded names for each framework, let the application copy it to its output directory instead -->
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DefineConstants>TRACE;NET_CORE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|AnyCPU'">
|
|
<Optimize>true</Optimize>
|
|
<DefineConstants>TRACE;NET_CORE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
|
<Optimize>true</Optimize>
|
|
<DefineConstants>TRACE;NET_CORE</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="obj\**" />
|
|
<EmbeddedResource Remove="obj\**" />
|
|
<None Remove="obj\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\DotNETCommon\DotNETUtilities\DotNETUtilitiesCore.csproj" PrivateAssets="All"><Private>false</Private></ProjectReference>
|
|
<ProjectReference Include="..\..\UnrealBuildTool\UnrealBuildToolCore.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" />
|
|
|
|
<!--
|
|
<PackageReference Include="Google.Apis" Version="1.33.1" />
|
|
<PackageReference Include="Google.Apis.Auth" Version="1.33.1" />
|
|
<PackageReference Include="Google.Apis.Core" Version="1.33.1" />-->
|
|
<PackageReference Include="Google.Apis.Drive.v3" Version="1.33.1.1225" />
|
|
<PackageReference Include="Google.Apis.Sheets.v4" Version="1.33.1.1229" />
|
|
</ItemGroup>
|
|
</Project> |