You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- I have not been able to reproduce the issue itself but these changes should make this project better adhere to what the AutomationTool expects and therefore may fix the issue. #jira UE-218369 [REVIEW] [at]ryan.hummer #rb Ryan.Hummer [CL 34527829 by daniel moreno in ue5-main branch]
22 lines
829 B
XML
22 lines
829 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\..\..\Shared\UnrealEngine.csproj.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Configurations>Debug;Development</Configurations>
|
|
<!-- <BaseOutputPath>bin\</BaseOutputPath> -->
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
|
<OutputPath>..\..\..\..\..\Binaries\DotNET\AutomationTool\AutomationScripts\Mutable\</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Gauntlet\Gauntlet.Automation.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|