Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/BlazorUI/Demo/App/Bit.BlazorUI.Demo.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<AssemblyName>Bit.BlazorUI.Demo.Web</AssemblyName>

<!-- Display name -->
<ApplicationTitle>Bit BlazorUI Components</ApplicationTitle>
<ApplicationTitle>BitBlazorUIDemo</ApplicationTitle>

<!-- App Identifier -->
<ApplicationId>com.bitplatform.BlazorUI.Demo</ApplicationId>
Expand All @@ -35,6 +35,11 @@
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
</PropertyGroup>

<PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">
<!-- Workaround for MacCatalyst app title -->
<AssemblyName>BitBlazorUIDemo</AssemblyName>
</PropertyGroup>

<PropertyGroup Condition="$(TargetFramework.Contains('-android')) and '$(Configuration)' == 'Release'">
<EnableLLVM>true</EnableLLVM>
<AndroidPackageFormat>apk</AndroidPackageFormat>
Expand All @@ -61,6 +66,7 @@
<!-- Images -->
<MauiImage Include="Resources\Images\*" />

<!-- Fonts -->
<MauiFont Include="Resources\Fonts\*" />

<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
<NoWarn>$(NoWarn);ClassWithoutModifierAnalyzer</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">
<!-- Workaround for MacCatalyst app title -->
<AssemblyName>AdminPanel</AssemblyName>
</PropertyGroup>

<PropertyGroup Condition="$(TargetFramework.Contains('-android')) and '$(Configuration)' == 'Release'">
<EnableLLVM>true</EnableLLVM>
<AndroidPackageFormat>apk</AndroidPackageFormat>
Expand Down Expand Up @@ -62,6 +67,7 @@
<!-- Images -->
<MauiImage Include="Resources\Images\*" />

<!-- Fonts -->
<MauiFont Include="Resources\Fonts\*" />

<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
<NoWarn>$(NoWarn);ClassWithoutModifierAnalyzer</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">
<!-- Workaround for MacCatalyst app title -->
<AssemblyName>TodoTemplate</AssemblyName>
</PropertyGroup>

<PropertyGroup Condition="$(TargetFramework.Contains('-android')) and '$(Configuration)' == 'Release'">
<EnableLLVM>true</EnableLLVM>
<AndroidPackageFormat>apk</AndroidPackageFormat>
Expand All @@ -53,6 +58,7 @@
<!-- Images -->
<MauiImage Include="Resources\Images\*" />

<!-- Fonts -->
<MauiFont Include="Resources\Fonts\*" />

<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
Expand Down