Skip to content

Commit

Permalink
[del] .NET Framework 4.6.2 support
Browse files Browse the repository at this point in the history
[add] .NET Framework 4.8 support
[up] Simplify.System bump to 1.6.2
  • Loading branch information
i4004 committed Aug 26, 2023
1 parent a207a07 commit a606eee
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
15 changes: 15 additions & 0 deletions src/Simplify.Wpf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

## [1.0.2] - 2023-08-26

### Removed

- .NET Framework 4.6.2 support

### Added

- .NET Framework 4.8 support

### Dependencies

- Simplify.System bump to 1.6.2
13 changes: 6 additions & 7 deletions src/Simplify.Wpf/Simplify.Wpf.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462</TargetFrameworks>
<TargetFrameworks>net48</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<Version>1.0.1</Version>
<PackageReleaseNotes>
Updates
* Simplify.System bump to 1.6
</PackageReleaseNotes>
<Version>1.0.2</Version>

<Authors>Simplify community</Authors>
<Product>Simplify</Product>
Expand All @@ -22,14 +18,17 @@
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageTags>.NET WPF</PackageTags>

<PackageReleaseNotes>See https://github.com/SimplifyNet/Simplify/tree/master/src/Simplify.Wpf/CHANGELOG.md for details</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Simplify.System" Version="1.6.*" />
<PackageReference Include="Simplify.System" Version="1.6.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />
<None Include="CHANGELOG.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>

0 comments on commit a606eee

Please sign in to comment.