Skip to content

Commit

Permalink
Update to NUnit 3.13.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtschelfthout committed Feb 23, 2021
1 parent f5cc961 commit 5b2d1d2
Show file tree
Hide file tree
Showing 18 changed files with 725 additions and 711 deletions.
6 changes: 6 additions & 0 deletions FsCheck Release Notes.md
@@ -1,3 +1,9 @@
### 2.15.0 - To be released

* Update NUnit to 3.13.1, and set that as the lowest allowable version in FsCheck.NUnit package. Fix the ensuing

* Since NUnit 3.13 no longer support netstandard 1.6, had to remove netstandard 1.6 support from FsCheck.NUnit as well.

### 2.14.6 - 21 February 2021

* Restrict NUnit version range to versions < 3.13.1, as that introduced an incompatibility with FsCheck.NUnit.
Expand Down
20 changes: 20 additions & 0 deletions examples/FsCheck.MsTest.Examples/App.config
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="xunit.diagnosticMessages" value="false" />
</appSettings>

<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Expand Up @@ -7,6 +7,12 @@
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<ItemGroup>
<None Remove="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FsCheck\FsCheck.fsproj" />
</ItemGroup>
Expand Down
20 changes: 20 additions & 0 deletions examples/FsCheck.NUnit.CSharpExamples/App.config
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="xunit.diagnosticMessages" value="false" />
</appSettings>

<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Expand Up @@ -2,11 +2,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>FsCheck.NUnit.CSharpExamples</AssemblyName>
<TargetFrameworks>net452</TargetFrameworks>
<TargetFramework>net452</TargetFramework>
<PlatformTarget>AnyCPU</PlatformTarget>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<ItemGroup>
<None Remove="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FsCheck.NUnit\FsCheck.NUnit.fsproj" />
<ProjectReference Include="..\..\src\FsCheck\FsCheck.fsproj" />
Expand Down
20 changes: 20 additions & 0 deletions examples/FsCheck.NUnit.Examples/App.config
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="xunit.diagnosticMessages" value="false" />
</appSettings>

<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
4 changes: 2 additions & 2 deletions examples/FsCheck.NUnit.Examples/FsCheck.NUnit.Examples.fsproj
Expand Up @@ -2,10 +2,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>FsCheck.NUnit.Examples</AssemblyName>
<TargetFrameworks>net452</TargetFrameworks>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFramework>net452</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="App.config" />
<Compile Include="PropertyExamples.fs" />
<None Include="paket.references" />
</ItemGroup>
Expand Down
20 changes: 20 additions & 0 deletions examples/FsCheck.XUnit.CSharpExamples/App.config
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="xunit.diagnosticMessages" value="false" />
</appSettings>

<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Expand Up @@ -2,11 +2,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>FsCheck.Xunit.CSharpExamples</AssemblyName>
<TargetFrameworks>net452</TargetFrameworks>
<TargetFramework>net452</TargetFramework>
<PlatformTarget>AnyCPU</PlatformTarget>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<ItemGroup>
<None Remove="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FsCheck.Xunit\FsCheck.Xunit.fsproj" />
<ProjectReference Include="..\..\src\FsCheck\FsCheck.fsproj" />
Expand Down
2 changes: 1 addition & 1 deletion paket.dependencies
Expand Up @@ -9,7 +9,7 @@ nuget FSharp.Core = 4.2.3
nuget Unquote
nuget xunit = 2.2
nuget xunit.runner.visualstudio version_in_path: true
nuget NUnit = 3.10.1
nuget NUnit = 3.13.1
nuget NUnit3TestAdapter version_in_path: true
nuget MSTest.TestFramework
nuget MSTest.TestAdapter version_in_path: true
Expand Down

0 comments on commit 5b2d1d2

Please sign in to comment.