Statistiques
| Branche: | Révision:

root / GES_PAC / GES_PAC.csproj @ 18f910c6

Historique | Voir | Annoter | Télécharger (4,228 ko)

1 18f910c6 Lucas Bihannic
<Project Sdk="Microsoft.NET.Sdk">
2 65ad7e66 Lucas Bihannic
3
	<PropertyGroup>
4
		<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
5
		<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>
6
		<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
7
		<!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> -->
8
9 18f910c6 Lucas Bihannic
10 65ad7e66 Lucas Bihannic
		<!-- Note for MacCatalyst:
11
		The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64.
12
		When specifying both architectures, use the plural <RuntimeIdentifiers> instead of the singular <RuntimeIdentifier>.
13
		The Mac App Store will NOT accept apps with ONLY maccatalyst-arm64 indicated;
14
		either BOTH runtimes must be indicated or ONLY macatalyst-x64. -->
15
		<!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> -->
16
17
		<OutputType>Exe</OutputType>
18
		<RootNamespace>GES_PAC</RootNamespace>
19
		<UseMaui>true</UseMaui>
20
		<SingleProject>true</SingleProject>
21
		<ImplicitUsings>enable</ImplicitUsings>
22
		<Nullable>enable</Nullable>
23
24
		<!-- Display name -->
25
		<ApplicationTitle>GES_PAC</ApplicationTitle>
26
27
		<!-- App Identifier -->
28 18f910c6 Lucas Bihannic
		<ApplicationId>com.companyname.GES_PAC</ApplicationId>
29 65ad7e66 Lucas Bihannic
30
		<!-- Versions -->
31
		<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
32
		<ApplicationVersion>1</ApplicationVersion>
33
34
		<!-- To develop, package, and publish an app to the Microsoft Store, see: https://aka.ms/MauiTemplateUnpackaged -->
35
		<WindowsPackageType>None</WindowsPackageType>
36
37
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
38
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.0</SupportedOSPlatformVersion>
39
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
40
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
41
		<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
42
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
43
	</PropertyGroup>
44
45
	<ItemGroup>
46
		<!-- App Icon -->
47
		<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
48
49
		<!-- Splash Screen -->
50
		<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
51
52
		<!-- Images -->
53
		<MauiImage Include="Resources\Images\*" />
54
55
		<!-- Custom Fonts -->
56
		<MauiFont Include="Resources\Fonts\*" />
57
58
		<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
59
		<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
60
	</ItemGroup>
61
62
	<ItemGroup>
63 18f910c6 Lucas Bihannic
		<PackageReference Include="CommunityToolkit.Maui" Version="9.1.1" />
64 65ad7e66 Lucas Bihannic
		<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
65
		<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" />
66
	</ItemGroup>
67
68
	<ItemGroup>
69
	  <Compile Update="View\CreateDayView.xaml.cs">
70
	    <DependentUpon>CreateDayView.xaml</DependentUpon>
71
	  </Compile>
72
	  <Compile Update="View\CreatePlaceView.xaml.cs">
73
	    <DependentUpon>CreatePlaceView.xaml</DependentUpon>
74
	  </Compile>
75
	</ItemGroup>
76
77
	<ItemGroup>
78
	  <MauiXaml Update="View\CreateDayView.xaml">
79
	    <Generator>MSBuild:Compile</Generator>
80
	  </MauiXaml>
81
	  <MauiXaml Update="View\CreatePersonView.xaml">
82
	    <Generator>MSBuild:Compile</Generator>
83
	  </MauiXaml>
84
	  <MauiXaml Update="View\MainView.xaml">
85
	    <Generator>MSBuild:Compile</Generator>
86
	  </MauiXaml>
87
	  <MauiXaml Update="View\CreatePlaceView.xaml">
88
	    <Generator>MSBuild:Compile</Generator>
89
	  </MauiXaml>
90 18f910c6 Lucas Bihannic
	  <MauiXaml Update="View\Tools\ConnectionIndicatorView.xaml">
91
	    <Generator>MSBuild:Compile</Generator>
92
	  </MauiXaml>
93 65ad7e66 Lucas Bihannic
	</ItemGroup>
94
95
</Project>