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 .net 9 #165

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
30 changes: 18 additions & 12 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,43 @@
"version": "3.1.1",
"commands": [
"sourcelink"
]
],
"rollForward": false
},
"dotnet-reportgenerator-globaltool": {
"version": "4.2.15",
"version": "5.4.1",
"commands": [
"reportgenerator"
]
],
"rollForward": false
},
"paket": {
"version": "6.0.13",
"version": "9.0.2",
"commands": [
"paket"
]
],
"rollForward": false
},
"fcswatch-cli": {
"version": "0.7.14",
"commands": [
"fcswatch"
]
],
"rollForward": false
},
"fsharp-analyzers": {
"version": "0.9.0",
"version": "0.28.0",
"commands": [
"fsharp-analyzers"
]
],
"rollForward": false
},
"fantomas-tool": {
"version": "4.5.6",
"version": "4.7.9",
"commands": [
"fantomas"
]
"fantomas"
],
"rollForward": false
}
}
}
}
1,002 changes: 505 additions & 497 deletions .paket/Paket.Restore.targets

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ let updateChangelog ctx =
|> List.ofSeq
|> List.rev

let isRef line =
let isRef (line:string) =
System.Text.RegularExpressions.Regex.IsMatch(line, @"^\[.+?\]:\s?[a-z]+://.*$")

let linkReferenceTargets =
Expand Down
2 changes: 1 addition & 1 deletion build/build.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>net6.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<WarnOn>3390;$(WarnOn)</WarnOn>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion docsTool/docsTool.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

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": "6.0.100",
"version": "9.0.100",
"rollForward": "latestMinor"
}
}
2,313 changes: 857 additions & 1,456 deletions paket.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/EFCore.FSharp/EFCore.FSharp.fsproj
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>net6.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>EntityFrameworkCore.FSharp</AssemblyName>
<RootNamespace>EntityFrameworkCore.FSharp</RootNamespace>
<Authors>Simon Reynolds, Brice Lambson et al.</Authors>
Expand Down
2 changes: 1 addition & 1 deletion tests/EFCore.FSharp.Tests/EFCore.FSharp.Tests.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>net6.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>EntityFrameworkCore.FSharp.Tests</AssemblyName>
<RootNamespace>EntityFrameworkCore.FSharp.Tests</RootNamespace>
<GenerateProgramFile>false</GenerateProgramFile>
Expand Down