diff --git a/global.json b/global.json index b380f65c2f..d0eef3a5c9 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "2.1.500" + "version": "3.0.100" } } diff --git a/integrationtests/Paket.IntegrationTests/PackSpecs.fs b/integrationtests/Paket.IntegrationTests/PackSpecs.fs index 990c0c9e84..a9a1d0d34e 100644 --- a/integrationtests/Paket.IntegrationTests/PackSpecs.fs +++ b/integrationtests/Paket.IntegrationTests/PackSpecs.fs @@ -588,8 +588,11 @@ let ``#2694 paket fixnuspec should not remove project references``() = // Should we remove Microsoft.NETCore.App? // Problably not as "packaged" console applications have this dependency by default, see https://www.nuget.org/packages/dotnet-mergenupkg - nuspec.Dependencies.Value.Length - |> shouldEqual 3 + if nuspec.Dependencies.Value.Length <> 1 then + failwithf "Dependencies: %A" nuspec.Dependencies.Value + + + [] let ``#2765 pack single template does not evaluate other template`` () =