Skip to content

Commit

Permalink
update to net6 (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyme authored Mar 19, 2022
1 parent 99a33a3 commit 5af82ac
Show file tree
Hide file tree
Showing 15 changed files with 282 additions and 276 deletions.
4 changes: 2 additions & 2 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.2.1",
"version": "7.0.2",
"commands": [
"paket"
]
},
"fake-cli": {
"version": "5.20.4-alpha.1642",
"version": "5.21.0",
"commands": [
"fake"
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet: [5.0.x]
dotnet: [6.0.x]
fail-fast: false # we have timing issues on some OS, so we want them all to run
runs-on: ${{ matrix.os }}
timeout-minutes: 15
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [windows-latest]
dotnet: [5.0.x]
dotnet: [6.0.x]
runs-on: ${{ matrix.os }}

steps:
Expand Down
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "Launch Tool 5.0 graph resolver",
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/src/Ionide.ProjInfo.Tool/bin/Debug/net5.0/Ionide.ProjInfo.Tool.dll",
"program": "${workspaceFolder}/src/Ionide.ProjInfo.Tool/bin/Debug/net6.0/Ionide.ProjInfo.Tool.dll",
"args": [
"--project",
"<your project>",
Expand All @@ -23,7 +23,7 @@
"name": "Launch Tool 5.0 normal resolver",
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/src/Ionide.ProjInfo.Tool/bin/Debug/net5.0/Ionide.ProjInfo.Tool.dll",
"program": "${workspaceFolder}/src/Ionide.ProjInfo.Tool/bin/Debug/net6.0/Ionide.ProjInfo.Tool.dll",
"args": [
"--project",
"<your project>",
Expand All @@ -43,7 +43,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/test/Ionide.ProjInfo.Tests/bin/Debug/net5.0/Ionide.ProjInfo.Tests.dll",
"program": "${workspaceFolder}/test/Ionide.ProjInfo.Tests/bin/Debug/net6.0/Ionide.ProjInfo.Tests.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.56.0] - 2022-03-19

### Changed

- [Update to .NET 6](https://github.com/ionide/proj-info/pull/133)

## [0.55.4] - 2021-11-19

### Fixed
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.300",
"version": "6.0.201",
"rollForward": "minor"
}
}
4 changes: 2 additions & 2 deletions paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source https://api.nuget.org/v3/index.json
source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json

storage: none
framework: net5.0
framework: net6.0

nuget FSharp.Core
nuget FSharp.Compiler.Service ~> 41.0
Expand Down Expand Up @@ -33,7 +33,7 @@ github TheAngryByrd/FsLibLog src/FsLibLog/FsLibLog.fs
group Build
source https://api.nuget.org/v3/index.json

framework: netstandard2.0
framework: net6.0
storage: none

nuget Fake.Core.Target
Expand Down
Loading

0 comments on commit 5af82ac

Please sign in to comment.