Skip to content

Fix .NET Framework reference issue #213

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 2 commits into from
Aug 16, 2022
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
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 5.0.3 - Aug 16, 2022
- Fixed a reference issue with .NET Framework.

### 5.0.2 - Aug 15, 2022
- Dependency update (NHamcrest 2.0.1 => 3.0.1) -> (https://github.com/fsprojects/FsUnit/pull/211)

Expand Down
8 changes: 4 additions & 4 deletions src/FsUnit.MsTestUnit/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsUnit.MsTest")>]
[<assembly: AssemblyProductAttribute("FsUnit")>]
[<assembly: AssemblyDescriptionAttribute("FsUnit is a set of libraries that makes unit-testing with F# more enjoyable.")>]
[<assembly: AssemblyVersionAttribute("5.0.2")>]
[<assembly: AssemblyFileVersionAttribute("5.0.2")>]
[<assembly: AssemblyVersionAttribute("5.0.3")>]
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsUnit.MsTest"
let [<Literal>] AssemblyProduct = "FsUnit"
let [<Literal>] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
let [<Literal>] AssemblyVersion = "5.0.2"
let [<Literal>] AssemblyFileVersion = "5.0.2"
let [<Literal>] AssemblyVersion = "5.0.3"
let [<Literal>] AssemblyFileVersion = "5.0.3"
8 changes: 3 additions & 5 deletions src/FsUnit.MsTestUnit/paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ files
../../src/install.ps1 ==> tools

dependencies
framework: net6.0
MSTest.TestFramework ~> LOCKEDVERSION
NHamcrest ~> LOCKEDVERSION
FSharp.Core >= LOCKEDVERSION
framework: netstandard2.0
MSTest.TestFramework ~> LOCKEDVERSION
NHamcrest ~> LOCKEDVERSION
FSharp.Core >= LOCKEDVERSION
8 changes: 4 additions & 4 deletions src/FsUnit.NUnit/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsUnit.NUnit")>]
[<assembly: AssemblyProductAttribute("FsUnit")>]
[<assembly: AssemblyDescriptionAttribute("FsUnit is a set of libraries that makes unit-testing with F# more enjoyable.")>]
[<assembly: AssemblyVersionAttribute("5.0.2")>]
[<assembly: AssemblyFileVersionAttribute("5.0.2")>]
[<assembly: AssemblyVersionAttribute("5.0.3")>]
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsUnit.NUnit"
let [<Literal>] AssemblyProduct = "FsUnit"
let [<Literal>] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
let [<Literal>] AssemblyVersion = "5.0.2"
let [<Literal>] AssemblyFileVersion = "5.0.2"
let [<Literal>] AssemblyVersion = "5.0.3"
let [<Literal>] AssemblyFileVersion = "5.0.3"
6 changes: 2 additions & 4 deletions src/FsUnit.NUnit/paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,5 @@ files
../../src/install.ps1 ==> tools

dependencies
framework: net6.0
NUnit ~> LOCKEDVERSION
FSharp.Core >= LOCKEDVERSION
framework: netstandard2.0
NUnit ~> LOCKEDVERSION
FSharp.Core >= LOCKEDVERSION
8 changes: 4 additions & 4 deletions src/FsUnit.Xunit/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsUnit.Xunit")>]
[<assembly: AssemblyProductAttribute("FsUnit")>]
[<assembly: AssemblyDescriptionAttribute("FsUnit is a set of libraries that makes unit-testing with F# more enjoyable.")>]
[<assembly: AssemblyVersionAttribute("5.0.2")>]
[<assembly: AssemblyFileVersionAttribute("5.0.2")>]
[<assembly: AssemblyVersionAttribute("5.0.3")>]
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsUnit.Xunit"
let [<Literal>] AssemblyProduct = "FsUnit"
let [<Literal>] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
let [<Literal>] AssemblyVersion = "5.0.2"
let [<Literal>] AssemblyFileVersion = "5.0.2"
let [<Literal>] AssemblyVersion = "5.0.3"
let [<Literal>] AssemblyFileVersion = "5.0.3"
8 changes: 3 additions & 5 deletions src/FsUnit.Xunit/paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ files
../../src/install.ps1 ==> tools

dependencies
framework: net6.0
xunit ~> LOCKEDVERSION
NHamcrest ~> LOCKEDVERSION
FSharp.Core >= LOCKEDVERSION
framework: netstandard2.0
xunit ~> LOCKEDVERSION
NHamcrest ~> LOCKEDVERSION
FSharp.Core >= LOCKEDVERSION