|
|
|
@ -1,25 +1,20 @@ |
|
|
|
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Razor"> |
|
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
|
|
|
|
<Import Project="..\..\..\configureawait.props" /> |
|
|
|
<Import Project="..\..\..\common.props" /> |
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> |
|
|
|
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks> |
|
|
|
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> |
|
|
|
<!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> --> |
|
|
|
<UseMaui>true</UseMaui> |
|
|
|
<SingleProject>true</SingleProject> |
|
|
|
<ImplicitUsings>enable</ImplicitUsings> |
|
|
|
<TargetFramework>net9.0</TargetFramework> |
|
|
|
<Nullable>enable</Nullable> |
|
|
|
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion> |
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.0</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> |
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> |
|
|
|
<WarningsAsErrors>Nullable</WarningsAsErrors> |
|
|
|
<AssemblyName>Volo.Abp.AspNetCore.Components.MauiBlazor.Bundling</AssemblyName> |
|
|
|
<PackageId>Volo.Abp.AspNetCore.Components.MauiBlazor.Bundling</PackageId> |
|
|
|
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback> |
|
|
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
|
|
|
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
|
|
|
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
|
|
|
<RootNamespace /> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
@ -31,11 +26,4 @@ |
|
|
|
<ProjectReference Include="..\Volo.Abp.AspNetCore.Bundling\Volo.Abp.AspNetCore.Bundling.csproj" /> |
|
|
|
<ProjectReference Include="..\Volo.Abp.AspNetCore.Components.MauiBlazor\Volo.Abp.AspNetCore.Components.MauiBlazor.csproj" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<Folder Include="Platforms\Android\" /> |
|
|
|
<Folder Include="Platforms\iOS\" /> |
|
|
|
<Folder Include="Platforms\MacCatalyst\" /> |
|
|
|
<Folder Include="Platforms\Windows\" /> |
|
|
|
</ItemGroup> |
|
|
|
</Project> |