Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,22 @@
"isRoot": true,
"tools": {
"paket": {
"version": "6.0.0",
"version": "7.1.5",
"commands": [
"paket"
]
},
"fake-cli": {
"version": "5.20.4",
"version": "5.22.0",
"commands": [
"fake"
]
},
"fsdocs-tool": {
"version": "15.0.0",
"commands": [
"fsdocs"
]
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet: [5.0.302]
dotnet: [6.0.400]
runs-on: ${{ matrix.os }}

steps:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ $RECYCLE.BIN/

.idea/
.vs/
.vscode/

# NuGet Packages Directory
packages/
Expand All @@ -169,6 +170,7 @@ docs/output/

# Temp folder used for publishing docs
temp/
tmp/

# Test results produced by build
TestResults.xml
Expand All @@ -177,6 +179,7 @@ nuget/
.paket/
.fake/
.ionide/
.fsdocs/

# Nuget outputs
nuget/*.nupkg
Expand Down
12 changes: 12 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project>
<PropertyGroup>
<Authors>Steffen Forkmann; Sergey Tihon; Daniel Mohl; Tomas Petricek; Ryan Riley; Mauricio Scheffer; Phil Trelford; Vasily Kirichenko; Reed Copsey, Jr.</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>http://fsprojects.github.io/FSharp.Configuration/</PackageProjectUrl>
<RepositoryUrl>https://github.com/fsprojects/FSharp.Configuration</RepositoryUrl>
<FsDocsLogoSource>https://raw.githubusercontent.com/fsprojects/FSharp.Configuration/master/docs/img/logo.png</FsDocsLogoSource>
<RepositoryType>git</RepositoryType>
<Copyright>Copyright 2014-2022</Copyright>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
</Project>
38 changes: 0 additions & 38 deletions FSharp.Configuration.Tests.sln

This file was deleted.

10 changes: 9 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
#### 3.0.0 - 25.04.2022
* Removed `net461` target from TPDTC
* Added `net6.0` target from TPDTC
* Build with .NET 6.0
* Migration to latest TPSDK
* Dependencies updated
* Docs migrated to fsdocs

#### 2.0.0 - 09.08.2021
* Migration to project system
* Migration from SharpYaml to YamlDotNet
* YamlConfigTypeProvider targets net461 and netstandard2.0
* IniFileProvider targets net461 and netstandard2.0
* AppSettingsProvider targets net461 and netstandard2.0
* Dependencies update
* Dependencies updated
* Fix bug triggering exception 'xx_ItemType is not comparable' when updating an empty list #158

#### 1.5.0 - 15.06.2018
Expand Down
Loading