Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tooling to use latest version 6 .NET SDK #92

Merged
merged 16 commits into from
Feb 17, 2024
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
8 changes: 4 additions & 4 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
"isRoot": true,
"tools": {
"fake-cli": {
"version": "5.20.4",
"version": "6.0.0",
"commands": [
"fake"
]
},
"paket": {
"version": "6.0.13",
"version": "8.0.3",
"commands": [
"paket"
]
},
"fsharp.formatting.commandtool": {
"version": "11.4.3",
"fsdocs-tool": {
"version": "20.0.0",
"commands": [
"fsdocs"
]
Expand Down
997 changes: 500 additions & 497 deletions .paket/Paket.Restore.targets

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "5.0.302",
"version": "6.0.419",
"rollForward": "minor"
}
}
16 changes: 8 additions & 8 deletions paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@ source https://api.nuget.org/v3/index.json

frameworks: netstandard2.0

nuget ExcelDataReader
nuget ExcelDataReader.DataSet
nuget FSharp.Core 4.7.2
nuget FSharp.Core 6.0.7
nuget NetStandard.Library
nuget System.Text.Encoding.CodePages
nuget System.Text.Encoding.CodePages 6.0.0

github fsprojects/FSharp.TypeProviders.SDK src/ProvidedTypes.fsi
github fsprojects/FSharp.TypeProviders.SDK src/ProvidedTypes.fs

group Build
source https://api.nuget.org/v3/index.json
frameworks: net5.0, netstandard2.0
frameworks: net6.0, netstandard2.0
generate_load_scripts:true
nuget Fake.Api.Github
nuget Fake.Core.Environment
Expand All @@ -26,14 +25,15 @@ group Build
nuget Fake.DotNet.Paket
nuget Fake.IO.FileSystem
nuget Fake.Tools.Git
nuget Fantomas.Extras
nuget FSharp.Core
nuget FSharp.Compiler.Service 39
nuget FSharp.Compiler.Service
nuget Microsoft.Build 17.3.2
nuget Microsoft.Build.Framework 17.3.2
nuget Microsoft.Build.Tasks.Core 17.3.2


group Test
source https://api.nuget.org/v3/index.json
frameworks: net5.0
frameworks: net6.0
nuget NUnit
nuget NUnit.Console
nuget NUnit3TestAdapter version_in_path: true
Expand Down
Loading