-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBetTrack.csproj
189 lines (162 loc) · 8.3 KB
/
BetTrack.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0-ios;net8.0-android34.0</TargetFrameworks>
<!--<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.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);net8.0-tizen</TargetFrameworks> -->
<!-- Note for MacCatalyst:
The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64.
When specifying both architectures, use the plural <RuntimeIdentifiers> instead of the singular <RuntimeIdentifier>.
The Mac App Store will NOT accept apps with ONLY maccatalyst-arm64 indicated;
either BOTH runtimes must be indicated or ONLY macatalyst-x64. -->
<!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> -->
<OutputType>Exe</OutputType>
<RootNamespace>BetTrack</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Display name -->
<ApplicationTitle>BetTrack</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.armandocl.bettrack</ApplicationId>
<!-- Versions -->
<ApplicationDisplayVersion>1.0.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
<!--<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>-->
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<NeutralLanguage>es-MX</NeutralLanguage>
<!--<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)'=='net8.0-ios'">
<CodesignKey>Apple Development: Rafael Cortes (QARLYLW7PR)</CodesignKey>
<CodesignProvision>VS: WildCard Development</CodesignProvision>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'">
<AndroidUseAapt2>True</AndroidUseAapt2>
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
<AndroidPackageFormat>aab</AndroidPackageFormat>
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-ios|AnyCPU'">
<ApplicationDisplayVersion>1.0.0</ApplicationDisplayVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android34.0|AnyCPU'">
<ApplicationDisplayVersion>1.0.0</ApplicationDisplayVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-ios|AnyCPU'">
<ApplicationDisplayVersion>1.0.0</ApplicationDisplayVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android34.0|AnyCPU'">
<ApplicationDisplayVersion>1.0.0</ApplicationDisplayVersion>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" />
<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#0E1317" BaseSize="300,300" />
<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<!-- Custom Fonts -->
<!--<MauiFont Include="Resources\Fonts\*" />-->
<!-- Custom Fonts -->
<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
<ItemGroup>
<AndroidResource Remove="Platforms\MacCatalyst\**" />
<AndroidResource Remove="Platforms\Tizen\**" />
<AndroidResource Remove="Platforms\Windows\**" />
<Compile Remove="BetTrackApi\**" />
<Compile Remove="Platforms\MacCatalyst\**" />
<Compile Remove="Platforms\Tizen\**" />
<Compile Remove="Platforms\Windows\**" />
<EmbeddedResource Remove="BetTrackApi\**" />
<EmbeddedResource Remove="Platforms\MacCatalyst\**" />
<EmbeddedResource Remove="Platforms\Tizen\**" />
<EmbeddedResource Remove="Platforms\Windows\**" />
<MauiCss Remove="BetTrackApi\**" />
<MauiCss Remove="Platforms\MacCatalyst\**" />
<MauiCss Remove="Platforms\Tizen\**" />
<MauiCss Remove="Platforms\Windows\**" />
<MauiXaml Remove="BetTrackApi\**" />
<MauiXaml Remove="Platforms\MacCatalyst\**" />
<MauiXaml Remove="Platforms\Tizen\**" />
<MauiXaml Remove="Platforms\Windows\**" />
<None Remove="BetTrackApi\**" />
<None Remove="Platforms\MacCatalyst\**" />
<None Remove="Platforms\Tizen\**" />
<None Remove="Platforms\Windows\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\Fonts\fontawesome.ttf" />
<None Remove="Resources\Fonts\Kabisat Demo-ItalicTall.ttf" />
<None Remove="Resources\Fonts\Lato-Bold.ttf" />
<None Remove="Resources\Fonts\Lato-Italic.ttf" />
<None Remove="Resources\Fonts\Lato-Regular.ttf" />
<None Remove="Resources\Images\i1.png" />
<None Remove="Resources\Images\i2.png" />
<None Remove="Resources\Images\i3.png" />
<None Remove="Resources\Images\i4.png" />
<None Remove="Resources\Images\i5.png" />
<None Remove="Resources\Images\sports_pattern.png" />
<None Remove="Resources\Images\sports_pattern_2.png" />
</ItemGroup>
<ItemGroup>
<MauiFont Include="Resources\Fonts\fontawesome.ttf" />
<MauiFont Include="Resources\Fonts\Kabisat Demo-ItalicTall.ttf" />
<MauiFont Include="Resources\Fonts\Lato-Bold.ttf" />
<MauiFont Include="Resources\Fonts\Lato-Italic.ttf" />
<MauiFont Include="Resources\Fonts\Lato-Regular.ttf" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Prism.DryIoc.Maui" Version="9.0.537" />
<PackageReference Include="Prism.Maui" Version="9.0.537" />
<PackageReference Include="Syncfusion.Maui.Buttons" Version="28.1.33" />
<PackageReference Include="Syncfusion.Maui.Core" Version="28.1.33" />
<PackageReference Include="Syncfusion.Maui.ListView" Version="28.1.33" />
<PackageReference Include="Syncfusion.Maui.Toolkit" Version="1.0.3" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\Languages\AppResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>AppResource.resx</DependentUpon>
</Compile>
<Compile Update="Views\WelcomePage.xaml.cs">
<DependentUpon>WelcomePage.xaml</DependentUpon>
</Compile>
<Compile Update="Views\SignUpPage.xaml.cs">
<DependentUpon>SignUpPage.xaml</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Languages\AppResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>AppResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<MauiXaml Update="Views\ForgotPasswordPage.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Views\WelcomePage.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Views\DashboardPage.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Views\LoginPage.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Views\SignUpPage.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
</ItemGroup>
</Project>