Skip to content

Commit 175add7

Browse files
authored
Merge pull request #52 from kirillgarbar/net5
BFS
2 parents a1797bc + eddcfed commit 175add7

27 files changed

Lines changed: 1153 additions & 1189 deletions

File tree

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
]
1616
},
1717
"paket": {
18-
"version": "6.0.13",
18+
"version": "7.2.0",
1919
"commands": [
2020
"paket"
2121
]

.devcontainer/install-dotnets.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fi
1515
# Add additional versions if required
1616
DOTNET_VERSIONS=(
1717
# 'latest'
18-
'5.0.100'
18+
'7.0.x'
1919
)
2020
for version in ${DOTNET_VERSIONS[@]}; do
2121
echo "installing dotnet $version"

benchmarks/GraphBLAS-sharp.Benchmarks/GraphBLAS-sharp.Benchmarks.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net7.0</TargetFramework>
66
</PropertyGroup>
77
<PropertyGroup Condition="'$(Configuration)'=='Release'">
88
<Optimize>true</Optimize>

benchmarks/GraphBLAS-sharp.Benchmarks/paket.references

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ FSharp.Core
33
BenchmarkDotNet
44
MathNet.Numerics.FSharp
55
MathNet.Numerics.MKL.Win-x64
6-
YC.QuickGraph

build/build.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ let updateChangelog ctx =
350350
let linkReferenceForUnreleased = sprintf "[Unreleased]: %s/compare/%s...%s" gitHubRepoUrl (tagFromVersionNumber newVersion.AsString) "HEAD"
351351
let tailLines = File.read changelogFilename |> List.ofSeq |> List.rev
352352

353-
let isRef line = System.Text.RegularExpressions.Regex.IsMatch(line, @"^\[.+?\]:\s?[a-z]+://.*$")
353+
let isRef (line:string) = System.Text.RegularExpressions.Regex.IsMatch(line, @"^\[.+?\]:\s?[a-z]+://.*$")
354354
let linkReferenceTargets =
355355
tailLines
356356
|> List.skipWhile String.isNullOrWhiteSpace

build/build.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net7.0</TargetFramework>
66
<WarnOn>3390;$(WarnOn)</WarnOn>
77
<IsPackable>false</IsPackable>
88
</PropertyGroup>

docsTool/WebServer.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module WebServer =
2828

2929
/// Async version of IApplicationBuilder.Use
3030
let useAsync (middlware : HttpContext -> (unit -> Async<unit>) -> Async<unit>) (app:IApplicationBuilder) =
31-
app.Use(fun env next ->
31+
app.Use(fun env (next:Func<Threading.Tasks.Task>) ->
3232
middlware env (next.Invoke >> Async.AwaitTask)
3333
|> Async.StartAsTask
3434
:> System.Threading.Tasks.Task

docsTool/docsTool.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net7.0</TargetFramework>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "5.0.x"
3+
"version": "7.0.x"
44
}
55
}

paket.dependencies

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
source https://www.nuget.org/api/v2
22
source https://api.nuget.org/v3/index.json
33
storage: none
4-
nuget FSharp.Core ~> 5.0
4+
nuget FSharp.Core ~> 7.0
55
nuget Microsoft.SourceLink.GitHub 1.0.0 copy_local: true
66
nuget Expecto 9.0.2
77
nuget Expecto.FsCheck 9.0.2
8-
nuget YoloDev.Expecto.TestSdk 0.11.1
8+
nuget YoloDev.Expecto.TestSdk 0.13.3
99
nuget Microsoft.NET.Test.Sdk 16.8.0
1010
nuget altcover ~> 7
1111

12-
nuget System.Collections.Immutable 5.0
12+
nuget System.Collections.Immutable 7.0
1313
nuget ExtraConstraints.Fody 1.14.0
1414
nuget Microsoft.Build.Framework ~> 16.10
15-
nuget System.CodeDom >= 5.0
15+
nuget System.CodeDom >= 7.0
1616
nuget FSharp.Quotations.Evaluator 2.1.0
1717
nuget FSharpx.Collections 2.1.3
1818
nuget FSharpx.Text.StructuredFormat ~> 3.0.0
1919
nuget Brahma.FSharp >= 2.0.1
2020
nuget BenchmarkDotNet
21-
nuget MathNet.Numerics.FSharp
21+
nuget MathNet.Numerics.FSharp 4.0.0
2222
nuget MathNet.Numerics.MKL.Win-x64 2.5.0
2323
nuget TypeShape 9.0.0
24-
nuget YC.QuickGraph 3.7.4
24+
nuget QuikGraph 2.5.0
2525

2626
// [ FAKE GROUP ]
2727
group Build
@@ -48,7 +48,7 @@ group Docs
4848
source https://api.nuget.org/v3/index.json
4949
nuget Argu
5050
nuget FSharp.Compiler.Service 34.1.0
51-
nuget FSharp.Core ~> 4.6
51+
nuget FSharp.Core ~> 7.0
5252
nuget Fake.IO.FileSystem 5.20.4
5353
nuget FAKE.Core.Environment 5.20.4
5454
nuget Fake.DotNet.Cli 5.20.4

0 commit comments

Comments
 (0)