Skip to content

Commit

Permalink
vb
Browse files Browse the repository at this point in the history
  • Loading branch information
ackava committed Aug 6, 2024
1 parent b75378f commit 29fe554
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
16 changes: 8 additions & 8 deletions NativeShell/NativeShell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,20 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="YantraJS.ExpressionCompiler" Version="1.2.206" ReferenceOutputAssembly="false" OutputItemType="Analyzer" />
<PackageReference Include="YantraJS.JSClassGenerator" Version="1.2.206" />
<PackageReference Include="CommunityToolkit.Maui" Version="7.0.0" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133">
<PackageReference Include="YantraJS.ExpressionCompiler" Version="1.2.209" ReferenceOutputAssembly="false" OutputItemType="Analyzer" />
<PackageReference Include="YantraJS.JSClassGenerator" Version="1.2.209" />
<PackageReference Include="CommunityToolkit.Maui" Version="9.0.2" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.139">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.3" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.71" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-android'">
<PackageReference Include="Plugin.Firebase" Version="2.0.3" />
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk7" Version="1.9.0.1" ExcludeAssets="build;buildTransitive" />
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk8" Version="1.9.0.1" ExcludeAssets="build;buildTransitive" />
<PackageReference Include="Plugin.Firebase" Version="3.0.0" />
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk7" Version="2.0.0.1" ExcludeAssets="build;buildTransitive" />
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk8" Version="2.0.0.1" ExcludeAssets="build;buildTransitive" />
</ItemGroup>

<ItemGroup>
Expand Down
14 changes: 8 additions & 6 deletions NativeShellApp/NativeShellApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<RootNamespace>SocialMailApp</RootNamespace>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<UseInterpreter>true</UseInterpreter>

<!-- Display name -->
<ApplicationTitle>Social Mail</ApplicationTitle>
Expand All @@ -21,9 +22,9 @@
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>

<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">17.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">17.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">34.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>
Expand All @@ -32,15 +33,16 @@
<!-- For iOS publish-->
<PropertyGroup Condition="$(TargetFramework.Contains('-ios')) and '$(Configuration)' == 'Release'">
<RuntimeIdentifier>ios-arm64</RuntimeIdentifier>
<MtouchInterpreter>all</MtouchInterpreter>
<CodesignKey>iPhone Distribution: NeuroSpeech Technologies Private Limited (XGZ87AZF38)</CodesignKey>
<CodesignProvision>Social Mail Provisioning Profile</CodesignProvision>
<ArchiveOnBuild>true</ArchiveOnBuild>
</PropertyGroup>

<!-- For Android Push Notifications -->
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-android'">
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk7" Version="1.9.0.1" ExcludeAssets="build;buildTransitive" />
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk8" Version="1.9.0.1" ExcludeAssets="build;buildTransitive" />
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk7" Version="2.0.0.1" ExcludeAssets="build;buildTransitive" />
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk8" Version="2.0.0.1" ExcludeAssets="build;buildTransitive" />
</ItemGroup>

<ItemGroup>
Expand All @@ -63,7 +65,7 @@

<ItemGroup>
<ProjectReference Include="..\NativeShell\NativeShell.csproj" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.3" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.71" />
</ItemGroup>

</Project>

0 comments on commit 29fe554

Please sign in to comment.