-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMileXamlBlankAppNetFrameworkNativeBackend.csproj
More file actions
28 lines (24 loc) · 1.05 KB
/
MileXamlBlankAppNetFrameworkNativeBackend.csproj
File metadata and controls
28 lines (24 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net48</TargetFramework>
<TargetPlatformVersion>10.0.26100.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<LangVersion>latest</LangVersion>
<ApplicationManifest>App.manifest</ApplicationManifest>
<UseWindowsForms>true</UseWindowsForms>
<!-- Add workaround for WinRT support in the old .NET SDK -->
<SupportedOSPlatformVersion>$(TargetPlatformMinVersion)</SupportedOSPlatformVersion>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.26100.7175" />
<PackageReference Include="Mile.Xaml" Version="2.5.1616" />
<PackageReference Include="System.Numerics.Vectors" Version="4.6.1" />
</ItemGroup>
<ItemGroup>
<Content Update="Resources\NoiseAsset_256x256_PNG.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>