Skip to content

Commit

Permalink
retarget from .NET 5 to .NET 6 due to former's EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
alexalok committed Nov 23, 2023
1 parent ba9f1c2 commit b6156c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AppleReceiptVerifier.NET/AppleReceiptVerifier.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
Expand All @@ -16,9 +16,9 @@
<Description>AppleReceiptVerifier.NET is the library used to validate purchase and subscription receipts with the Apple App Store.</Description>
<Company>alexalok</Company>
<Authors>alexalok</Authors>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<PackageReleaseNotes>
* Made RawJson property public for testing purposes.
* Retargeted from .NET 5 to .NET 6 due to former's EOL
</PackageReleaseNotes>
<PackageTags>App Store, in-app purchase, in-app subscription, verify receipt</PackageTags>
<RepositoryUrl>https://github.com/alexalok/AppleReceiptVerifier.NET</RepositoryUrl>
Expand Down

0 comments on commit b6156c9

Please sign in to comment.