Skip to content

Change LOCKEDVERSION operator in nuget package template #254

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

Merged
Merged
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
2 changes: 1 addition & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ nuget System.Collections.NonGeneric

// xUnit
nuget NHamcrest
nuget xunit
nuget xunit ~> 2.5.3
nuget xunit.runner.visualstudio

// MsTest
Expand Down
8 changes: 4 additions & 4 deletions paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ NUGET
NETStandard.Library (2.0.3)
Microsoft.NETCore.Platforms (>= 1.1)
Newtonsoft.Json (13.0.3) - restriction: || (== net6.0) (&& (== netstandard2.0) (>= netcoreapp3.1))
NHamcrest (3.3)
NHamcrest (3.4)
NuGet.Frameworks (6.7) - restriction: || (== net6.0) (&& (== netstandard2.0) (>= netcoreapp3.1))
NUnit (3.13.3)
NUnit (3.14)
NETStandard.Library (>= 2.0)
NUnit3TestAdapter (4.5)
runtime.native.System (4.3.1) - restriction: || (== net6.0) (&& (== netstandard2.0) (>= netcoreapp1.0))
Expand Down Expand Up @@ -123,8 +123,8 @@ NUGET
xunit.core (2.5.3)
xunit.abstractions (2.0.3)
xunit.analyzers (1.4)
xunit.assert (2.5.3)
NETStandard.Library (>= 1.6.1)
xunit.assert (2.6.1)
NETStandard.Library (>= 1.6.1) - restriction: == netstandard2.0
xunit.core (2.5.3)
xunit.extensibility.core (2.5.3)
xunit.extensibility.execution (2.5.3)
Expand Down
4 changes: 2 additions & 2 deletions src/FsUnit.MsTestUnit/paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ files
../../src/install.ps1 ==> tools

dependencies
MSTest.TestFramework ~> LOCKEDVERSION
NHamcrest ~> LOCKEDVERSION
MSTest.TestFramework >= LOCKEDVERSION
NHamcrest >= LOCKEDVERSION
FSharp.Core >= LOCKEDVERSION
2 changes: 1 addition & 1 deletion src/FsUnit.NUnit/paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ files
../../src/install.ps1 ==> tools

dependencies
NUnit ~> LOCKEDVERSION
NUnit >= LOCKEDVERSION
FSharp.Core >= LOCKEDVERSION
4 changes: 2 additions & 2 deletions src/FsUnit.Xunit/paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ files
../../src/install.ps1 ==> tools

dependencies
xunit ~> LOCKEDVERSION
NHamcrest ~> LOCKEDVERSION
xunit >= LOCKEDVERSION
NHamcrest >= LOCKEDVERSION
FSharp.Core >= LOCKEDVERSION
2 changes: 2 additions & 0 deletions tests/FsUnit.NUnit.Test/init.fs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
namespace global

open FsUnit
open NUnit.Framework

[<SetUpFixture>]
type InitMsgUtils() =
inherit FSharpCustomMessageFormatter()