-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCodebreakerUno.csproj
More file actions
110 lines (99 loc) · 3.75 KB
/
CodebreakerUno.csproj
File metadata and controls
110 lines (99 loc) · 3.75 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<Project Sdk="Uno.Sdk">
<PropertyGroup>
<TargetFrameworks>
net9.0-android;
net9.0-ios;
net9.0-maccatalyst;
net9.0-windows10.0.19041;
net9.0-desktop;
net9.0-browserwasm;
</TargetFrameworks>
<OutputType>Exe</OutputType>
<UnoSingleProject>true</UnoSingleProject>
<!-- Display name -->
<ApplicationTitle>CodebreakerUno</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.cninnovation.CodebreakerUno</ApplicationId>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<!--
If you encounter this error message:
error NETSDK1148: A referenced assembly was compiled using a newer version of Microsoft.Windows.SDK.NET.dll.
Please update to a newer .NET SDK in order to reference this assembly.
This means that the two packages below must be aligned with the "build" version number of
the "Microsoft.Windows.SDK.BuildTools" package above, and the "revision" version number
must be the highest found in https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref.
-->
<WindowsSdkPackageVersion>10.0.22621.28</WindowsSdkPackageVersion>
<!--
UnoFeatures let's you quickly add and manage implicit package references based on the features you want to use.
https://aka.platform.uno/singleproject-features
-->
<UnoFeatures>
Lottie;
Hosting;
Toolkit;
Logging;
Mvvm;
Configuration;
Http;
Serialization;
Localization;
ThemeService;
</UnoFeatures>
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
<AppxPackageSigningEnabled>False</AppxPackageSigningEnabled>
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
<GenerateTestArtifacts>True</GenerateTestArtifacts>
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\Icons\icon_foreground.svg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CNInnovation.Codebreaker.ViewModels" />
<PackageReference Include="CommunityToolkit.WinUI.Animations" />
<PackageReference Include="CommunityToolkit.WinUI.Converters" />
<PackageReference Include="CommunityToolkit.Mvvm" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
</ItemGroup>
<ItemGroup>
<Page Update="Styles\FontSizes.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Update="Styles\Thickness.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
<None Update="Views\Components\GameResultDisplay.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="Views\Components\InfoBarArea.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="Views\Components\PegSelectionComponent.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="Views\Pages\GamePage.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="Views\Pages\SettingsPage.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="Views\Pages\ShellPage.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="Views\Templates\CodeBreakerTemplates.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\PublishProfiles\" />
</ItemGroup>
<ItemGroup>
<UnoIcon Include="Assets\Icons\icon.svg" />
<UnoIcon Include="Assets\Icons\icon_foreground.svg" />
</ItemGroup>
</Project>