Skip to content

Commit 7ab14ab

Browse files
authored
Merge pull request #722 from xperiandri/net9.0
Migrated to .NET `9.0.201` and F# compiler `43.9.201`
2 parents 873d145 + 0cc45e8 commit 7ab14ab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+260
-1328
lines changed

.config/dotnet-tools.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@
88
"fake"
99
]
1010
},
11-
"paket": {
12-
"version": "7.2.1",
13-
"commands": [
14-
"paket"
15-
]
16-
},
1711
"fornax": {
1812
"version": "0.13.1",
1913
"commands": [

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
9+
- Migrate from `Paket` to `Directory.Packages.props` #722 [@xperiandri]
10+
- Migrate to .NET `9.0.201` and FCS `43.9.201` #722 [@xperiandri]
11+
- Write test logs to test context output #722 [@xperiandri]
12+
713
## [0.24.2] - 2024-02-29
814

915
- New rule EnsureTailCallDiagnosticsInRecursiveFunctions #673 #651 [@webwarrior-ws]

Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<Project ToolsVersion="15.0">
22
<PropertyGroup>
3+
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
34
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
45
<MSBuildTreatWarningsAsErrors>true</MSBuildTreatWarningsAsErrors>
56
<IsPackable>false</IsPackable>

Directory.Packages.props

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project>
3+
<PropertyGroup>
4+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
5+
</PropertyGroup>
6+
<ItemGroup>
7+
<PackageVersion Include="Argu" Version="6.2.5" />
8+
<PackageVersion Include="BenchmarkDotNet" Version="0.15.2" />
9+
<PackageVersion Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.2" />
10+
<PackageVersion Include="FParsec" Version="1.1.1" />
11+
<PackageVersion Include="FSharp.Compiler.Service" Version="43.9.201" />
12+
<PackageVersion Include="FSharp.Control.Reactive" Version="6.1.2" />
13+
<PackageVersion Include="FSharp.Core" Version="9.0.201" />
14+
<PackageVersion Include="Ionide.ProjInfo.ProjectSystem" Version="0.70.2" />
15+
<PackageVersion Include="Ionide.ProjInfo.FCS" Version="0.70.2" />
16+
<PackageVersion Include="Ionide.ProjInfo" Version="0.70.2" />
17+
<PackageVersion Include="Ionide.ProjInfo.Sln" Version="0.68.0" />
18+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
19+
<PackageVersion Include="Microsoft.Build" Version="17.14.8" />
20+
<PackageVersion Include="Microsoft.Build.Locator" Version="1.9.1" />
21+
<PackageVersion Include="Microsoft.Build.Framework" Version="17.14.8" />
22+
<PackageVersion Include="Microsoft.Build.Tasks.Core" Version="17.14.8" />
23+
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.14.8" />
24+
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
25+
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
26+
<PackageVersion Include="NUnit" Version="3.14.0" />
27+
<PackageVersion Include="NUnit3TestAdapter" Version="5.0.0" />
28+
<PackageVersion Include="System.Reactive" Version="6.0.1" />
29+
</ItemGroup>
30+
</Project>

FSharpLint.sln

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.30002.166
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.14.36221.1
55
MinimumVisualStudioVersion = 15.0.26124.0
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{40C2798B-7078-4D4F-BD37-195240CB827B}"
77
EndProject
@@ -22,6 +22,8 @@ EndProject
2222
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{270E691D-ECA1-4BC5-B851-C5431A64E9FA}"
2323
ProjectSection(SolutionItems) = preProject
2424
build.fsx = build.fsx
25+
Directory.Build.props = Directory.Build.props
26+
Directory.Packages.props = Directory.Packages.props
2527
EndProjectSection
2628
EndProject
2729
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{E1E03FFE-30DF-4522-83DA-9089147B431E}"

global.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"sdk": {
3-
"version": "6.0.417"
4-
,"rollForward": "minor"
3+
"rollForward": "minor"
54
}
65
}

paket.dependencies

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)