-
Notifications
You must be signed in to change notification settings - Fork 4
/
ObjectsAsAPI.csproj
75 lines (67 loc) · 3.33 KB
/
ObjectsAsAPI.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<RootNamespace>ObjectsAsAPI</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<CodeAnalysisRuleSet>stylecop.ruleset</CodeAnalysisRuleSet>
<Nullable>enable</Nullable>
<WindowsPackageType>None</WindowsPackageType>
<!-- Display name -->
<ApplicationTitle>ObjectsAsAPI</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.objectsasapi</ApplicationId>
<ApplicationIdGuid>9e717b35-9e75-435b-bec9-47c083676c36</ApplicationIdGuid>
<!-- Versions -->
<ApplicationDisplayVersion>1.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>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios|AnyCPU'">
<CreatePackage>false</CreatePackage>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.png" Color="#00684A" />
<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\mongodb.png" Color="#00684A" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
<PackageReference Include="CommunityToolkit.Maui" Version="5.3.0" />
<PackageReference Include="Realm" Version="11.4.0" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\Images\add.svg" />
<None Remove="Resources\Images\logout.svg" />
<None Remove="Resources\Images\wifi_off.svg" />
<None Remove="Resources\Images\wifi_on.svg" />
<None Remove="Views\" />
<None Remove="ViewModels\" />
<None Remove="Services\" />
<None Remove="Models\" />
<None Remove="Utils\" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
<MauiImage Include="Resources\Images\add.svg" />
<MauiImage Include="Resources\Images\logout.svg" />
<MauiImage Include="Resources\Images\wifi_off.svg" />
<MauiImage Include="Resources\Images\wifi_on.svg" />
</ItemGroup>
<ItemGroup>
<Folder Include="Views\" />
<Folder Include="ViewModels\" />
<Folder Include="Services\" />
<Folder Include="Models\" />
<Folder Include="Utils\" />
</ItemGroup>
</Project>