Skip to content

Commit

Permalink
Merge pull request #213 from CaptnCodr/bugfix/212-references
Browse files Browse the repository at this point in the history
Fix .NET Framework reference issue
  • Loading branch information
CaptnCodr authored Aug 16, 2022
2 parents 8d45b18 + b399874 commit d62b736
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 26 deletions.
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

0 comments on commit d62b736

Please sign in to comment.