Skip to content

Commit 4b2a917

Browse files
committed
Update nunit to v3
1 parent f2f3728 commit 4b2a917

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

samples/FluentAssertions.Mvc3.Samples/FluentAssertions.Mvc3.Samples.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<IISExpressUseClassicPipelineMode />
3030
<MvcProjectUpgradeChecked>true</MvcProjectUpgradeChecked>
3131
<TargetFrameworkProfile />
32+
<UseGlobalApplicationHostFile />
3233
</PropertyGroup>
3334
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3435
<DebugSymbols>true</DebugSymbols>
@@ -65,9 +66,9 @@
6566
<HintPath>..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
6667
<Private>True</Private>
6768
</Reference>
68-
<Reference Include="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
69-
<SpecificVersion>False</SpecificVersion>
70-
<HintPath>..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
69+
<Reference Include="nunit.framework, Version=3.2.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
70+
<HintPath>..\..\packages\NUnit.3.2.1\lib\net40\nunit.framework.dll</HintPath>
71+
<Private>True</Private>
7172
</Reference>
7273
<Reference Include="System.Data.DataSetExtensions" />
7374
<Reference Include="System.Data.Entity" />

samples/FluentAssertions.Mvc3.Samples/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
<package id="Microsoft.AspNet.WebPages" version="1.0.20105.408" targetFramework="net40" allowedVersions="(,2)" />
1212
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
1313
<package id="Modernizr" version="1.7" />
14-
<package id="NUnit" version="2.6.3" targetFramework="net40" />
14+
<package id="NUnit" version="3.2.1" targetFramework="net40" />
1515
</packages>

tests/FluentAssertions.Mvc3.Tests/FluentAssertions.Mvc3.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
<HintPath>..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
5050
<Private>True</Private>
5151
</Reference>
52-
<Reference Include="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
53-
<SpecificVersion>False</SpecificVersion>
54-
<HintPath>..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
52+
<Reference Include="nunit.framework, Version=3.2.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
53+
<HintPath>..\..\packages\NUnit.3.2.1\lib\net40\nunit.framework.dll</HintPath>
54+
<Private>True</Private>
5555
</Reference>
5656
<Reference Include="System" />
5757
<Reference Include="System.Web" />

tests/FluentAssertions.Mvc3.Tests/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<package id="Microsoft.AspNet.Razor" version="1.0.20105.408" targetFramework="net40" allowedVersions="(,2)" />
66
<package id="Microsoft.AspNet.WebPages" version="1.0.20105.408" targetFramework="net40" allowedVersions="(,2)" />
77
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
8-
<package id="NUnit" version="2.6.3" targetFramework="net40" />
8+
<package id="NUnit" version="3.2.1" targetFramework="net40" />
99
</packages>

tests/FluentAssertions.Mvc4.Tests/FluentAssertions.Mvc4.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
<HintPath>..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
4949
<Private>True</Private>
5050
</Reference>
51-
<Reference Include="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
52-
<SpecificVersion>False</SpecificVersion>
53-
<HintPath>..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
51+
<Reference Include="nunit.framework, Version=3.2.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
52+
<HintPath>..\..\packages\NUnit.3.2.1\lib\net40\nunit.framework.dll</HintPath>
53+
<Private>True</Private>
5454
</Reference>
5555
<Reference Include="System" />
5656
<Reference Include="System.Core" />

tests/FluentAssertions.Mvc4.Tests/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<package id="Microsoft.AspNet.Razor" version="2.0.20710.0" targetFramework="net40" />
66
<package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net40" />
77
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
8-
<package id="NUnit" version="2.6.3" targetFramework="net40" />
8+
<package id="NUnit" version="3.2.1" targetFramework="net40" />
99
</packages>

tests/FluentAssertions.Mvc5.Tests/FluentAssertions.Mvc5.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
<HintPath>..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
4848
<Private>True</Private>
4949
</Reference>
50-
<Reference Include="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
51-
<SpecificVersion>False</SpecificVersion>
52-
<HintPath>..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
50+
<Reference Include="nunit.framework, Version=3.2.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
51+
<HintPath>..\..\packages\NUnit.3.2.1\lib\net45\nunit.framework.dll</HintPath>
52+
<Private>True</Private>
5353
</Reference>
5454
<Reference Include="System" />
5555
<Reference Include="System.Core" />

tests/FluentAssertions.Mvc5.Tests/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<package id="Microsoft.AspNet.Razor" version="3.0.0" targetFramework="net45" />
66
<package id="Microsoft.AspNet.WebPages" version="3.0.0" targetFramework="net45" />
77
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
8-
<package id="NUnit" version="2.6.3" targetFramework="net45" />
8+
<package id="NUnit" version="3.2.1" targetFramework="net45" />
99
</packages>

0 commit comments

Comments
 (0)