Skip to content

Commit c1e8648

Browse files
committed
dependencies updated
1 parent 7431db2 commit c1e8648

10 files changed

Lines changed: 226 additions & 189 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ appsettings.*.json
77
build.fsx.lock
88
.nupkg
99
node_modules
10-
dist
10+
dist
11+
debug.log

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog for `FSharp.CosmosDb`
22

3+
## [0.4.0]
4+
5+
### Changed
6+
7+
- Support for Ionide 5
8+
- Updated FSAC
9+
310
## [0.3.0] - 2020-12-21
411

512
### Added

paket.dependencies

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
11
version 5.257.0
2-
framework: netstandard2.0, netcoreapp3.1, netcoreapp2.0
2+
framework: net5.0
33

44
source https://www.nuget.org/api/v2
55
source https://api.nuget.org/v3/index.json
66

77
storage: none
88

99
nuget FSharp.Analyzers.SDK
10-
nuget FSharp.Compiler.Service 36.0.3
10+
nuget FSharp.Compiler.Service 38.0.0
1111
nuget Azure.Cosmos 4.0.0-preview3 preview
1212
nuget FSharp.Control.AsyncSeq 2.0.24
1313
nuget System.Json
1414
nuget Microsoft.Extensions.Configuration
1515
nuget Microsoft.Extensions.Configuration.Json
16-
nuget Expecto 8.13.1
17-
nuget YoloDev.Expecto.TestSdk 0.8.0
18-
nuget Microsoft.NET.Test.Sdk 16.5.0
16+
nuget Expecto
17+
nuget YoloDev.Expecto.TestSdk 0.9.2
18+
nuget Microsoft.NET.Test.Sdk 16.8.3
1919
nuget Microsoft.SourceLink.GitHub copy_local: true
2020
nuget Microsoft.NETFramework.ReferenceAssemblies copy_local: true
21+
nuget Microsoft.Build copy_local:false
22+
nuget Microsoft.Build.Framework copy_local:false
23+
nuget Microsoft.Build.Utilities.Core copy_local:false
2124
nuget FSharp.SystemTextJson 0.10.25
2225

2326
// [ FAKE GROUP ]

paket.lock

Lines changed: 203 additions & 177 deletions
Large diffs are not rendered by default.

samples/FSharp.CosmosDb.Samples/FSharp.CosmosDb.Samples.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<ProjectReference Include="..\..\src\FSharp.CosmosDb\FSharp.CosmosDb.fsproj" />

src/FSharp.CosmosDb.Analyzer/FSharp.CosmosDb.Analyzer.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp2.0</TargetFramework>
3+
<TargetFramework>net5.0</TargetFramework>
44
<Description>An F# analyzer that will help you work with CosmosDB.</Description>
55
</PropertyGroup>
66

src/FSharp.CosmosDb/FSharp.CosmosDb.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netstandard2.0</TargetFramework>
3+
<TargetFramework>net5.0</TargetFramework>
44
<Description>An F# friendly approach to working with CosmosDB.</Description>
55
</PropertyGroup>
66

tests/FSharp.CosmosDb.Analyzer.Tests/FSharp.CosmosDb.Analyzer.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net5.0</TargetFramework>
44
<GenerateProgramFile>false</GenerateProgramFile>
55
</PropertyGroup>
66
<ItemGroup>

tests/FSharp.CosmosDb.Analyzer.Tests/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ open Expecto.Logging
66
let config =
77
{ defaultConfig with
88
verbosity = Verbose
9-
``parallel`` = false }
9+
runInParallel = false }
1010

1111
[<EntryPoint>]
1212
let main argv = runTestsInAssembly config argv

tests/samples/samples.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netstandard2.0</TargetFramework>
3+
<TargetFramework>net5.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
66
<ProjectReference Include="..\..\src\FSharp.CosmosDb\FSharp.CosmosDb.fsproj" />

0 commit comments

Comments
 (0)