forked from microsoft/WindowsAppSDK-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnpackaged.csproj
More file actions
19 lines (16 loc) · 752 Bytes
/
Unpackaged.csproj
File metadata and controls
19 lines (16 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
<Platforms>x64;x86;ARM64</Platforms>
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
<!-- Set WindowsPackageType=None to auto-intialize access to the WinAppSDK framework -->
<!-- Remove this property to control bootstrapper initialization -->
<WindowsPackageType>None</WindowsPackageType>
<!--Bug - Required for non-WinUI apps, remove once resolved -->
<WinUISDKReferences>False</WinUISDKReferences>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240227000" />
</ItemGroup>
</Project>