Statistiques
| Branche: | Révision:

rfid-cb / CodeBarreRFID / CodeBarreRFID.csproj @ 0f2b4298

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

1 0f2b4298 ajournaux
<Project Sdk="Microsoft.NET.Sdk">
2
3
	<PropertyGroup>
4
		<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
5
		<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.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);net7.0-tizen</TargetFrameworks> -->
8
		<OutputType>Exe</OutputType>
9
		<RootNamespace>CodeBarreRFID</RootNamespace>
10
		<UseMaui>true</UseMaui>
11
		<SingleProject>true</SingleProject>
12
		<ImplicitUsings>enable</ImplicitUsings>
13
14
		<!-- Display name -->
15
		<ApplicationTitle>CodeBarreRFID</ApplicationTitle>
16
17
		<!-- App Identifier -->
18
		<ApplicationId>fr.inrae.sicpa.codebarrerfid</ApplicationId>
19
		<ApplicationIdGuid>bc1dd680-ddc8-4aa4-9f6d-450f8f2d16b1</ApplicationIdGuid>
20
21
		<!-- Versions -->
22
		<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
23
		<ApplicationVersion>1</ApplicationVersion>
24
25
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
26
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
27
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
28
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
29
		<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
30
		<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
31
	</PropertyGroup>
32
33
	<ItemGroup>
34
		<!-- App Icon -->
35
		<MauiIcon Include="Resources\AppIcon\ae.svg" Color="#FFFFFF" />
36
37
		<!-- Splash Screen -->
38
		<MauiSplashScreen Include="Resources\Images\logo_inrae.svg" Color="White" BaseSize="128,128" />
39
40
		<!-- Images -->
41
		<MauiImage Include="Resources\Images\*" />
42
		<MauiImage Include="Resources\Images\AjoutSuppr\*" />
43
		<MauiImage Include="Resources\Images\Animaux\*" />
44
		<MauiImage Include="Resources\Images\Liste\*" />
45
		<MauiImage Include="Resources\Images\PeripheriqueConnexion\*" />
46
		<MauiImage Include="Resources\Images\Sanitaire\*" />
47
		<MauiImage Include="Resources\Images\Scientifique\*" />
48
		<MauiImage Include="Resources\Images\Special\*" />
49
		<MauiImage Include="Resources\Images\Utile\*" />
50
		<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" />
51
52
		<!-- Custom Fonts -->
53
		<MauiFont Include="Resources\Fonts\*" />
54
55
		<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
56
		<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
57
	</ItemGroup>
58
59
	<ItemGroup>
60
		<PackageReference Include="CommunityToolkit.Maui" Version="5.0.0" />
61
		<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
62
	</ItemGroup>
63
64
	<ItemGroup>
65
	  <Compile Update="View\AnimalView.xaml.cs">
66
	    <DependentUpon>AnimalView.xaml</DependentUpon>
67
	  </Compile>
68
	  <Compile Update="View\ListeAnimauxView.xaml.cs">
69
	    <DependentUpon>ListeAnimauxView.xaml</DependentUpon>
70
	  </Compile>
71
	</ItemGroup>
72
73
	<ItemGroup>
74
	  <MauiXaml Update="View\AboutView.xaml">
75
	    <Generator>MSBuild:Compile</Generator>
76
	  </MauiXaml>
77
	  <MauiXaml Update="View\ListeAnimauxView.xaml">
78
	    <Generator>MSBuild:Compile</Generator>
79
	  </MauiXaml>
80
	  <MauiXaml Update="View\SettingsView.xaml">
81
	    <Generator>MSBuild:Compile</Generator>
82
	  </MauiXaml>
83
	  <MauiXaml Update="View\VivantEditionView.xaml">
84
	    <Generator>MSBuild:Compile</Generator>
85
	  </MauiXaml>
86
	  <MauiXaml Update="View\AnimalView.xaml">
87
	    <Generator>MSBuild:Compile</Generator>
88
	  </MauiXaml>
89
	  <MauiXaml Update="View\VivantView.xaml">
90
	    <Generator>MSBuild:Compile</Generator>
91
	  </MauiXaml>
92
	</ItemGroup>
93
94
</Project>