Skip to content

Commit

Permalink
Merge pull request #35 from configcat/add-net461
Browse files Browse the repository at this point in the history
Add net461 target framework
  • Loading branch information
z4kn4fein authored Apr 7, 2022
2 parents bbd3e51 + a6187fb commit 326f208
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 6.5.1
- Add net461 to the target frameworks list to force the usage of `System.Text.Json` rather than `Newtonsoft.Json`.

### 6.5.0
- Replace `FileSystemWatcher` with file polling in local file override data source.

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
build_version: 6.5.0
build_version: 6.5.1
version: $(build_version)-{build}
image: Visual Studio 2022
configuration: Release
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigCatClient/ConfigCatClient.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0;netstandard2.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>net45;net461;netstandard2.0;netstandard2.1;net5.0;net6.0</TargetFrameworks>
<AssemblyName>ConfigCat.Client</AssemblyName>
<RootNamespace>ConfigCat.Client</RootNamespace>
<SignAssembly>true</SignAssembly>
Expand Down

0 comments on commit 326f208

Please sign in to comment.