restore to .net 8.0

This commit is contained in:
Tsanie Lily 2023-08-01 09:56:17 +08:00
parent f0dd540914
commit 155ca9ad9c
2 changed files with 14 additions and 13 deletions

View File

@ -11,7 +11,7 @@ internal sealed class Constants
public const string LastTokenName = "last_token"; public const string LastTokenName = "last_token";
public const string BaseUrl = "https://app.blahblaho.com"; public const string BaseUrl = "https://app.blahblaho.com";
public const string AppVersion = "0.2.731"; public const string AppVersion = "0.2.801";
public const string UserAgent = $"FlowerApp/{AppVersion}"; public const string UserAgent = $"FlowerApp/{AppVersion}";
public const SQLiteOpenFlags SQLiteFlags = public const SQLiteOpenFlags SQLiteFlags =

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net7.0-android;net7.0-ios</TargetFrameworks> <TargetFrameworks>net8.0-android;net8.0-ios</TargetFrameworks>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<RootNamespace>Blahblah.FlowerApp</RootNamespace> <RootNamespace>Blahblah.FlowerApp</RootNamespace>
@ -18,18 +18,18 @@
<ApplicationIdGuid>2a32c3a1-d02e-450d-b524-5dbea90f13ed</ApplicationIdGuid> <ApplicationIdGuid>2a32c3a1-d02e-450d-b524-5dbea90f13ed</ApplicationIdGuid>
<!-- Versions --> <!-- Versions -->
<ApplicationDisplayVersion>0.2.731</ApplicationDisplayVersion> <ApplicationDisplayVersion>0.2.801</ApplicationDisplayVersion>
<ApplicationVersion>2</ApplicationVersion> <ApplicationVersion>3</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">23.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">23.0</SupportedOSPlatformVersion>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'Debug|net7.0-android'"> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'Debug|net8.0-android'">
<RuntimeIdentifiers>android-x64</RuntimeIdentifiers> <RuntimeIdentifiers>android-x64</RuntimeIdentifiers>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'Release|net7.0-android'"> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'Release|net8.0-android'">
<RuntimeIdentifiers>android-x64;android-arm64</RuntimeIdentifiers> <RuntimeIdentifiers>android-x64;android-arm64</RuntimeIdentifiers>
<AndroidPackageFormat>apk</AndroidPackageFormat> <AndroidPackageFormat>apk</AndroidPackageFormat>
<AndroidCreatePackagePerAbi>true</AndroidCreatePackagePerAbi> <AndroidCreatePackagePerAbi>true</AndroidCreatePackagePerAbi>
@ -40,14 +40,15 @@
<ProvisioningType>manual</ProvisioningType> <ProvisioningType>manual</ProvisioningType>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'Debug|net7.0-ios'"> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'Debug|net8.0-ios'">
<CodesignKey>Apple Development</CodesignKey> <CodesignKey>Apple Development</CodesignKey>
<CodesignProvision>Flower Story Development</CodesignProvision> <CodesignProvision>Flower Story Development</CodesignProvision>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'Release|net7.0-ios'"> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'Release|net8.0-ios'">
<CodesignKey>Apple Distribution</CodesignKey> <CodesignKey>Apple Distribution</CodesignKey>
<CodesignProvision>Flower Story Ad-Hoc</CodesignProvision> <CodesignProvision>Flower Story Ad-Hoc</CodesignProvision>
<EnableAssemblyILStripping>false</EnableAssemblyILStripping>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
@ -69,11 +70,11 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<!--<PackageReference Include="CommunityToolkit.Maui" Version="5.2.0" />--> <!-- <PackageReference Include="CommunityToolkit.Maui" Version="5.2.0" /> -->
<PackageReference Include="Microsoft.Extensions.Localization" Version="7.0.5" /> <PackageReference Include="Microsoft.Extensions.Localization" Version="7.0.9" />
<!--<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />--> <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<!--<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />--> <PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" /> <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0-preview.6.23329.7" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" /> <PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
<PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.5" /> <PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.5" />
</ItemGroup> </ItemGroup>