|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 |
| - <PropertyGroup> |
4 |
| - <TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks> |
5 |
| - <OutputType>Exe</OutputType> |
6 |
| - <RootNamespace>Sample</RootNamespace> |
7 |
| - <UseMaui>true</UseMaui> |
8 |
| - <SingleProject>true</SingleProject> |
9 |
| - <ImplicitUsings>enable</ImplicitUsings> |
10 |
| - |
11 |
| - <ApplicationTitle>ACR User Dialogs</ApplicationTitle> |
12 |
| - |
13 |
| - <!-- App Identifier --> |
14 |
| - <ApplicationId>org.shiny.dialogs</ApplicationId> |
15 |
| - <ApplicationIdGuid>FDEB2636-6320-4BEE-9C77-8F2AD2E4AA05</ApplicationIdGuid> |
16 |
| - |
17 |
| - <!-- Versions --> |
18 |
| - <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> |
19 |
| - <ApplicationVersion>1</ApplicationVersion> |
20 |
| - |
21 |
| - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion> |
22 |
| - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion> |
23 |
| - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion> |
24 |
| - </PropertyGroup> |
25 |
| - |
26 |
| - <ItemGroup> |
27 |
| - <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> |
28 |
| - |
29 |
| - <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" /> |
30 |
| - |
31 |
| - <MauiImage Include="Resources\Images\*" /> |
32 |
| - <MauiFont Include="Resources\Fonts\*" /> |
33 |
| - <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> |
34 |
| - </ItemGroup> |
35 |
| - |
36 |
| - <ItemGroup> |
37 |
| - <PackageReference Include="Microsoft.Maui.Controls" Version="8.0.14" /> |
38 |
| - <ProjectReference Include="..\..\src\Acr.UserDialogs\Acr.UserDialogs.csproj" /> |
39 |
| - </ItemGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks> |
| 5 | + <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks> |
| 6 | + <OutputType>Exe</OutputType> |
| 7 | + <RootNamespace>Sample</RootNamespace> |
| 8 | + <UseMaui>true</UseMaui> |
| 9 | + <SingleProject>true</SingleProject> |
| 10 | + <ImplicitUsings>enable</ImplicitUsings> |
| 11 | + |
| 12 | + <ApplicationTitle>ACR User Dialogs</ApplicationTitle> |
| 13 | + |
| 14 | + <!-- App Identifier --> |
| 15 | + <ApplicationId>org.shiny.dialogs</ApplicationId> |
| 16 | + <ApplicationIdGuid>FDEB2636-6320-4BEE-9C77-8F2AD2E4AA05</ApplicationIdGuid> |
| 17 | + |
| 18 | + <!-- Versions --> |
| 19 | + <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> |
| 20 | + <ApplicationVersion>1</ApplicationVersion> |
| 21 | + |
| 22 | + <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> |
| 23 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion> |
| 24 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion> |
| 25 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion> |
| 26 | + </PropertyGroup> |
| 27 | + |
| 28 | + <ItemGroup> |
| 29 | + <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> |
| 30 | + |
| 31 | + <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" /> |
| 32 | + |
| 33 | + <MauiImage Include="Resources\Images\*" /> |
| 34 | + <MauiFont Include="Resources\Fonts\*" /> |
| 35 | + <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> |
| 36 | + </ItemGroup> |
| 37 | + |
| 38 | + <ItemGroup> |
| 39 | + <PackageReference Include="Microsoft.Maui.Controls" Version="8.0.14" /> |
| 40 | + <ProjectReference Include="..\..\src\Acr.UserDialogs\Acr.UserDialogs.csproj" /> |
| 41 | + </ItemGroup> |
40 | 42 | </Project>
|
0 commit comments