You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* 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]
15 lines
484 B
XML
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>
|