-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWPF_XAML_Islands_WinUI3.csproj
50 lines (44 loc) · 1.67 KB
/
WPF_XAML_Islands_WinUI3.csproj
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows10.0.20348.0</TargetFramework>
<RuntimeIdentifiers>win10-x86;win10-x64</RuntimeIdentifiers>
<WindowsPackageType>None</WindowsPackageType>
<UseWinUI>true</UseWinUI>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<StartupObject>WPF_XAML_Islands_WinUI3.Program</StartupObject>
<SupportedOSPlatformVersion>10.0.20348.0</SupportedOSPlatformVersion>
<Platforms>AnyCPU;x86</Platforms>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.230822000" />
</ItemGroup>
<ItemGroup>
<Content Update="Assets\beach.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Assets\beach2.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Assets\Butterfly.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Assets\island.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Assets\paradise.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Assets\sunset.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Assets\sunset2.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Assets\sunset3.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>