Files
UnrealEngineUWP/Engine/Source/Programs/UnsyncUI/UnsyncUI/UnsyncUI.csproj
yuriy odonnell d339c97249 UnsyncUI - Add basic template expansion for variables in the config file
* Allows sharing the same config for multiple projects that follow the same conventions
* Add support for setting ProjectDir, ProjectName and ProjectFile via command line using `--key value` syntax
* Automatically derive project name and directory from project file, unless explicitly specified
* Update version to 1.0.24

[CL 34752385 by yuriy odonnell in ue5-main branch]
2024-06-28 19:50:36 -04:00

15 lines
484 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationManifest>app.manifest</ApplicationManifest>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<ApplicationIcon>unsync_48px.ico</ApplicationIcon>
<Version>$(VersionPrefix)1.0.24</Version>
</PropertyGroup>
</Project>