Skip to content

Commit

Permalink
Merge pull request #1184 from Basaingeal/release/v1.6.0
Browse files Browse the repository at this point in the history
Release/v1.6.0
  • Loading branch information
Basaingeal authored Dec 14, 2022
2 parents 250127a + 2f11fe2 commit 83ac7a6
Show file tree
Hide file tree
Showing 4 changed files with 161 additions and 171 deletions.
11 changes: 3 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# v1.5.0
# v1.6.0

## .NET 7 support
## Remove explicit .NET Core 3.1 support

.NET 7 is enabled as a framework target.

## Remove .NET 5 support

.NET 5 is no longer explicitly supported as it is EOL.
The package should still work in .NET 5 apps though as a `netstandard2.0` package.
This library no longer targets .NET Core 3.1 as it is no longer a supported version of .NET. The library still targets .NET Standard 2.0, so apps that are still on .NET Core 3.1 should still be able to use it.
19 changes: 7 additions & 12 deletions CurrieTechnologies.Razor.Clipboard.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>net7.0;net6.0;netcoreapp3.1;netstandard2.0;</TargetFrameworks>
<TargetFrameworks>net7.0;net6.0;netstandard2.0;</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
<Authors>Michael J. Currie</Authors>
<Company>Currie Technologies</Company>
Expand All @@ -19,7 +19,7 @@
<PackageTags>Blazor Clipboard JSInterop Razor</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>
add .NET 7 support
remove .NET Core 3.1 support
</PackageReleaseNotes>
</PropertyGroup>

Expand All @@ -40,7 +40,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="[7.0.0-preview1.*, 8.0.0)">
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand All @@ -51,19 +51,14 @@
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="[3.1.0, 5.0.0)" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="[3.1.0, 5.0.0)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="[6.0.0, 7.0.0)" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="[6.0.0, 7.0.0)" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="[7.0.0, 8.0.0)" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="[7.0.0, 8.0.0)" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.0" />
</ItemGroup>

</Project>
Loading

0 comments on commit 83ac7a6

Please sign in to comment.