Skip to content

Commit

Permalink
Upgrade .NET SDK to 6.0.200. (fsprojects#2105)
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf authored and jindraivanek committed Mar 30, 2022
1 parent ed46b85 commit 70c59e9
Show file tree
Hide file tree
Showing 10 changed files with 337 additions and 322 deletions.
6 changes: 3 additions & 3 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"isRoot": true,
"tools": {
"paket": {
"version": "6.0.13",
"version": "7.0.0-alpha018",
"commands": [
"paket"
]
},
"fake-cli": {
"version": "5.20.4",
"version": "5.22.0",
"commands": [
"fake"
]
Expand All @@ -21,7 +21,7 @@
]
},
"fantomas-tool": {
"version": "4.6.1",
"version": "4.6.5",
"commands": [
"fantomas"
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet: [5.0.401]
dotnet: [6.0.200]
runs-on: ${{ matrix.os }}

steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [Unreleased]

### Changed
* Update .NET SDK to 6.0.200. [#2105](https://github.com/fsprojects/fantomas/pull/2105)

## [4.6.5] - 2022-02-18

### Changed
Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ Target.create "Benchmark" (fun _ ->
</> "Fantomas.Benchmarks"
</> "bin"
</> "Release"
</> "net5.0"
</> "net6.0"
</> "Fantomas.Benchmarks.dll")
""
|> ignore
Expand Down
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.0",
"version": "6.0.200",
"rollForward": "latestMinor"
}
}
18 changes: 9 additions & 9 deletions paket.dependencies
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
source https://api.nuget.org/v3/index.json

framework: netstandard2.0, net5.0, netcoreapp3.1
framework: netstandard2.0, net6.0, netcoreapp3.1
storage: none

nuget FSharp.Core 6.0.1
nuget FSharp.Core 6.0.1 content: none
nuget FSharp.Compiler.Service 41.0.1
nuget FsUnit
nuget FsCheck
nuget Microsoft.NET.Test.Sdk 16.9.1
nuget nunit 3.13.1
nuget NUnit3TestAdapter 4.0.0-beta.1
nuget Microsoft.NET.Test.Sdk
nuget nunit
nuget NUnit3TestAdapter
nuget NunitXml.TestLogger
nuget Argu
nuget BenchmarkDotNet
nuget editorconfig
nuget MAB.DotIgnore 3.0.2
nuget MAB.DotIgnore
nuget Ionide.KeepAChangelog.Tasks copy_local: true
nuget Dotnet.ReproducibleBuilds copy_local: true

Expand All @@ -26,7 +26,7 @@ group build
source https://api.nuget.org/v3/index.json

nuget Microsoft.Azure.Cosmos.Table
nuget FSharp.Core ~> 5
nuget FSharp.Core ~> 5 content: none
nuget Fake.Core.ReleaseNotes
nuget Fake.Core.Xml
nuget Fake.DotNet.Cli
Expand All @@ -40,7 +40,7 @@ group tool
storage: none
source https://api.nuget.org/v3/index.json

nuget FSharp.Core 6.0.1
nuget FSharp.Core 6.0.1 content: none
nuget Argu
nuget StreamJsonRpc
nuget Thoth.Json.Net
Expand All @@ -52,7 +52,7 @@ group client
storage: none
source https://api.nuget.org/v3/index.json

nuget FSharp.Core 5
nuget FSharp.Core 5 content: none
nuget StreamJsonRpc

nuget SemanticVersioning
618 changes: 314 additions & 304 deletions paket.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Fantomas.Benchmarks/Fantomas.Benchmarks.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<WarningsAsErrors>FS0025</WarningsAsErrors>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
<NoWarn>FS0988</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion src/Fantomas.Tests/Fantomas.Tests.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<NoWarn>FS0988</NoWarn>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<WarningsAsErrors>FS0025</WarningsAsErrors>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 70c59e9

Please sign in to comment.