-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMauiJass.csproj
127 lines (119 loc) · 5.99 KB
/
MauiJass.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0-android;net6.0-ios;net6.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net6.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net6.0-tizen</TargetFrameworks> -->
<OutputType>Exe</OutputType>
<RootNamespace>MauiJass</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Display name -->
<ApplicationTitle>MauiJass</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>ch.jass.maui</ApplicationId>
<ApplicationIdGuid>4f2ee206-9a0a-4ea2-b92e-e2b4b745088a</ApplicationIdGuid>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.Contains('-ios')) and '$(Configuration)' == 'Release'">
<RuntimeIdentifier>ios-arm64</RuntimeIdentifier>
<CodesignKey>iPhone Distribution: DAVID BEAUVERD (46F9P8P4Y5)</CodesignKey>
<CodesignProvision>MauiJass</CodesignProvision>
<ArchiveOnBuild>true</ArchiveOnBuild>
<TcpPort>58181</TcpPort>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.Contains('-android')) and '$(Configuration)' == 'Release'">
<AndroidKeyStore>True</AndroidKeyStore>
<AndroidSigningKeyStore>jass.keystore</AndroidSigningKeyStore>
<AndroidSigningKeyAlias>jasskey</AndroidSigningKeyAlias>
<AndroidSigningKeyPass></AndroidSigningKeyPass>
<AndroidSigningStorePass></AndroidSigningStorePass>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#006400" />
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#006400" BaseSize="384,384" />
<!-- Splash Screen -->
<MauiImage Include="Resources\Images\*" />
<MauiFont Include="Resources\Fonts\*" />
<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
<ItemGroup>
<None Remove="Helpers\" />
<None Remove="Resources\Images\carpetdark.jpg" />
<None Remove="Resources\Images\carpetlight.jpg" />
<None Remove="ViewModels\" />
<None Remove="Views\" />
<None Remove="CommunityToolkit.Mvvm" />
<None Remove="CommunityToolkit.Maui" />
<None Remove="Microsoft.AspNetCore.SignalR.Common" />
<None Remove="Newtonsoft.Json" />
<None Remove="WWW.Shared" />
<None Remove="Services\" />
<None Remove="Microsoft.AspNetCore.SignalR.Client" />
<None Remove="Converters\" />
<None Remove="JassWeb.Shared" />
<None Remove="Resources\Splash\splash.svg" />
<None Remove="Libs\" />
</ItemGroup>
<ItemGroup>
<Folder Include="Helpers\" />
<Folder Include="ViewModels\" />
<Folder Include="Views\" />
<Folder Include="Services\" />
<Folder Include="Converters\" />
<Folder Include="Libs\" />
</ItemGroup>
<ItemGroup>
<MauiXaml Condition=" '$(EnableDefaultXamlItems)' == 'true' " Update="Views\MainPage.xaml">
<SubType>Designer</SubType>
</MauiXaml>
<MauiXaml Condition=" '$(EnableDefaultXamlItems)' == 'true' " Update="Views\MainPage %28copier%29.xaml">
<SubType>Designer</SubType>
</MauiXaml>
<MauiXaml Condition=" '$(EnableDefaultXamlItems)' == 'true' " Update="Views\JassPage.xaml">
<SubType>Designer</SubType>
</MauiXaml>
<MauiXaml Condition=" '$(EnableDefaultXamlItems)' == 'true' " Update="Views\JassPage %28copier%29.xaml">
<SubType>Designer</SubType>
</MauiXaml>
<MauiXaml Update="Views\GamePage.xaml">
<SubType></SubType>
</MauiXaml>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Maui" Version="1.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2-beta1" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="6.0.8" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="Views\MainPage %28copier%29.xaml.cs">
<DependentUpon>MainPage %28copier%29.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="Views\JassPage.xaml.cs">
<DependentUpon>JassPage.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="Views\JassPage %28copier%29.xaml.cs">
<DependentUpon>JassPage %28copier%29.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Reference Include="JassWeb.Shared">
<HintPath>Libs\JassWeb.Shared.dll</HintPath>
</Reference>
</ItemGroup>
</Project>