Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/Mutable/RunMutableCommandlet/RunMutableCommandlet.Automation.csproj
daniel moreno 3a0ab3e41f [mutable] Fixed configuration and placement of RunMutableCommandlet automation project
- 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]
2024-06-20 09:57:37 -04:00

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>