Skip to content

Commit

Permalink
upgrade upgrade upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
brase committed Mar 4, 2020
1 parent c5dba05 commit a5cfc59
Show file tree
Hide file tree
Showing 13 changed files with 1,526 additions and 1,691 deletions.
18 changes: 18 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": 1,
"isRoot": true,
"tools": {
"fake-cli": {
"version": "5.19.1",
"commands": [
"fake"
]
},
"paket": {
"version": "5.242.2",
"commands": [
"paket"
]
}
}
}
119 changes: 76 additions & 43 deletions .paket/Paket.Restore.targets

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/src/Server/bin/Debug/netcoreapp3.0/Server.dll",
"program": "${workspaceRoot}/src/Server/bin/Debug/netcoreapp3.1/Server.dll",
"args": ["${workspaceRoot}/src/Client"],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
Expand All @@ -17,7 +17,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build Server",
"program": "${workspaceRoot}/src/Server/bin/Debug/netcoreapp3.0/Server.dll",
"program": "${workspaceRoot}/src/Server/bin/Debug/netcoreapp3.1/Server.dll",
"args": ["${workspaceRoot}/src/Client", "AzureConnection=UseDevelopmentStorage=true" ],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
Expand All @@ -28,7 +28,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build ServerTests",
"program": "${workspaceRoot}/test/ServerTests/bin/Debug/netcoreapp3.0/ServerTests.dll",
"program": "${workspaceRoot}/test/ServerTests/bin/Debug/netcoreapp3.1/ServerTests.dll",
"args": [],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
Expand Down
5 changes: 5 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"sdk": {
"version": "3.1.101"
}
}
9 changes: 6 additions & 3 deletions paket.dependencies
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
group Server
source https://api.nuget.org/v3/index.json
framework: netcoreapp3.0
framework: netcoreapp3.1
storage: none

nuget FSharp.Core
nuget Saturn
nuget Giraffe
nuget Thoth.Json.Net
nuget Thoth.Json.Giraffe
nuget Fable.JsonConverter

nuget FSharp.Data

Expand All @@ -17,14 +17,15 @@ group Server
nuget Expecto.BenchmarkDotNet
nuget Expecto.FsCheck

nuget LiteDB 4.1.4 //LiteDB 5 does not work right now
nuget LiteDB.FSharp

nuget CosmoStore
nuget CosmoStore.LiteDB

group Client
source https://api.nuget.org/v3/index.json
framework: netstandard2.0
framework: netstandard2.1
storage: none

nuget Fable.Core ~> 3
Expand All @@ -37,6 +38,8 @@ group Client
nuget Fulma ~> 2
nuget Fable.FontAwesome.Free ~> 2

nuget Thoth.Json

group Build
source https://api.nuget.org/v3/index.json
framework: netstandard2.0
Expand Down
Loading

0 comments on commit a5cfc59

Please sign in to comment.