X Tutup
Skip to content

Commit e86405d

Browse files
author
dse
committed
Upgrading NUnit to 3.8.1 for better mono stability and R# support.
1 parent 507edc9 commit e86405d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
1212
- Added new build system (pythonnet.15.sln) based on dotnetcore-sdk/xplat(crossplatform msbuild).
1313
Currently there two side-by-side build systems that produces the same output (net40) from the same sources.
1414
After a some transition time, current (mono/ msbuild 14.0) build system will be removed.
15-
- NUnit upgraded to 3.7 (eliminates travis-ci random bug)
15+
- NUnit upgraded to 3.8.1 (eliminates travis-ci random bug)
1616
- Added `clr.GetClrType` (#432, #433)
1717
- Allowed passing `None` for nullable args (#460)
1818
- Added keyword arguments based on C# syntax for calling CPython methods (#461)

NuGet.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="dot-net MyGet Feed" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" protocolVersion="3"/>
54
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
5+
<add key="dot-net MyGet Feed" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" protocolVersion="3"/>
66
</packageSources>
77
</configuration>

src/embed_tests/Python.EmbeddingTest.15.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@
7676

7777

7878
<ItemGroup>
79-
<PackageReference Include="NUnit" Version="3.7.1" />
79+
<PackageReference Include="NUnit" Version="3.8.1" />
8080
<PackageReference Include="NUnit.ConsoleRunner" Version="3.7.0" />
8181
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0" />
82-
<PackageReference Include="NUnitLite" Version="3.7.2" />
82+
<PackageReference Include="NUnitLite" Version="3.8.1" />
8383
</ItemGroup>
8484
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
8585
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />

src/embed_tests/Python.EmbeddingTest.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
</PropertyGroup>
7171
<ItemGroup>
7272
<Reference Include="Microsoft.CSharp" />
73-
<Reference Include="nunit.framework, Version=3.7.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
74-
<HintPath>..\..\packages\NUnit.3.7.1\lib\net40\nunit.framework.dll</HintPath>
73+
<Reference Include="nunit.framework, Version=3.7.8.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
74+
<HintPath>..\..\packages\NUnit.3.8.1\lib\net40\nunit.framework.dll</HintPath>
7575
</Reference>
7676
<Reference Include="System" />
7777
</ItemGroup>

src/embed_tests/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="3.7.1" targetFramework="net40" />
3+
<package id="NUnit" version="3.8.1" targetFramework="net40" />
44
<package id="NUnit.ConsoleRunner" version="3.7.0" targetFramework="net40" />
55
</packages>

0 commit comments

Comments
 (0)
X Tutup