Statistiques
| Branche: | Révision:

root / GES_PAC / GES_PAC.csproj @ 4e39035b

Historique | Voir | Annoter | Télécharger (6,008 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 09d4a0de lbihannic
		<ApplicationId>fr.inrae.sicpa.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 09d4a0de lbihannic
		<MauiIcon Include="Resources\AppIcon\appicon.svg" Color="#FFFFFF" />
48 65ad7e66 Lucas Bihannic
49
		<!-- Splash Screen -->
50 09d4a0de lbihannic
		<MauiSplashScreen Include="Resources\Images\logo_inrae.svg" Color="White" BaseSize="128,128" />
51 65ad7e66 Lucas Bihannic
52
		<!-- Images -->
53
		<MauiImage Include="Resources\Images\*" />
54 09d4a0de lbihannic
		<MauiImage Include="Resources\Images\AjoutSuppr\*" />
55
		<MauiImage Include="Resources\Images\Animaux\*" />
56
		<MauiImage Include="Resources\Images\Liste\*" />
57
		<MauiImage Include="Resources\Images\PeripheriqueConnexion\*" />
58
		<MauiImage Include="Resources\Images\Sanitaire\*" />
59
		<MauiImage Include="Resources\Images\Scientifique\*" />
60
		<MauiImage Include="Resources\Images\Special\*" />
61
		<MauiImage Include="Resources\Images\Utile\*" />
62
		<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" />
63 65ad7e66 Lucas Bihannic
64
		<!-- Custom Fonts -->
65
		<MauiFont Include="Resources\Fonts\*" />
66
67
		<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
68
		<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
69
	</ItemGroup>
70
71
	<ItemGroup>
72 18f910c6 Lucas Bihannic
		<PackageReference Include="CommunityToolkit.Maui" Version="9.1.1" />
73 65ad7e66 Lucas Bihannic
		<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
74
		<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" />
75
	</ItemGroup>
76
77
	<ItemGroup>
78 5d673ce0 Lucas Bihannic
	  <Compile Update="View\CreateCalibrationView.xaml.cs">
79
	    <DependentUpon>CreateCalibrationView.xaml</DependentUpon>
80
	  </Compile>
81 65ad7e66 Lucas Bihannic
	  <Compile Update="View\CreateDayView.xaml.cs">
82
	    <DependentUpon>CreateDayView.xaml</DependentUpon>
83
	  </Compile>
84
	  <Compile Update="View\CreatePlaceView.xaml.cs">
85
	    <DependentUpon>CreatePlaceView.xaml</DependentUpon>
86
	  </Compile>
87 ba296a27 lbihannic
	  <Compile Update="View\EnterAnimalView.xaml.cs">
88
	    <DependentUpon>EnterAnimalView.xaml</DependentUpon>
89
	  </Compile>
90 09d4a0de lbihannic
	  <Compile Update="View\SetListView.xaml.cs">
91
	    <DependentUpon>SetListView.xaml</DependentUpon>
92
	  </Compile>
93 65ad7e66 Lucas Bihannic
	</ItemGroup>
94
95
	<ItemGroup>
96 09d4a0de lbihannic
	  <MauiXaml Update="View\ChambersView.xaml">
97
	    <Generator>MSBuild:Compile</Generator>
98
	  </MauiXaml>
99 12ddf7ef lbihannic
	  <MauiXaml Update="View\Controls\ChamberButtonView.xaml">
100
	    <Generator>MSBuild:Compile</Generator>
101
	  </MauiXaml>
102 5d673ce0 Lucas Bihannic
	  <MauiXaml Update="View\CreateCalibrationView.xaml">
103
	    <Generator>MSBuild:Compile</Generator>
104
	  </MauiXaml>
105 65ad7e66 Lucas Bihannic
	  <MauiXaml Update="View\CreateDayView.xaml">
106
	    <Generator>MSBuild:Compile</Generator>
107
	  </MauiXaml>
108 fff89fc5 lbihannic
	  <MauiXaml Update="View\CreateMeasureView.xaml">
109
	    <Generator>MSBuild:Compile</Generator>
110
	  </MauiXaml>
111 65ad7e66 Lucas Bihannic
	  <MauiXaml Update="View\CreatePersonView.xaml">
112
	    <Generator>MSBuild:Compile</Generator>
113
	  </MauiXaml>
114 09d4a0de lbihannic
	  <MauiXaml Update="View\CreateSetView.xaml">
115
	    <Generator>MSBuild:Compile</Generator>
116
	  </MauiXaml>
117 4e39035b lbihannic
	  <MauiXaml Update="View\EndSetView.xaml">
118
	    <Generator>MSBuild:Compile</Generator>
119
	  </MauiXaml>
120 ba296a27 lbihannic
	  <MauiXaml Update="View\EnterAnimalView.xaml">
121 09d4a0de lbihannic
	    <Generator>MSBuild:Compile</Generator>
122
	  </MauiXaml>
123 65ad7e66 Lucas Bihannic
	  <MauiXaml Update="View\MainView.xaml">
124
	    <Generator>MSBuild:Compile</Generator>
125
	  </MauiXaml>
126
	  <MauiXaml Update="View\CreatePlaceView.xaml">
127
	    <Generator>MSBuild:Compile</Generator>
128
	  </MauiXaml>
129 09d4a0de lbihannic
	  <MauiXaml Update="View\SetListView.xaml">
130
	    <Generator>MSBuild:Compile</Generator>
131
	  </MauiXaml>
132 9fd69a0e lbihannic
	  <MauiXaml Update="View\CreateBehaviourView.xaml">
133
	    <Generator>MSBuild:Compile</Generator>
134
	  </MauiXaml>
135 18f910c6 Lucas Bihannic
	  <MauiXaml Update="View\Tools\ConnectionIndicatorView.xaml">
136
	    <Generator>MSBuild:Compile</Generator>
137
	  </MauiXaml>
138 65ad7e66 Lucas Bihannic
	</ItemGroup>
139
140
</Project>