From 6cc8a82ef7a8f62375d6055b44c9133c8957a651 Mon Sep 17 00:00:00 2001 From: GiuseppePiscopo Date: Mon, 6 Mar 2017 10:49:25 +0100 Subject: [PATCH] chore(deps): delte net452 transitive dep's in client project --- examples/DotNetTestSample/README.md | 1 - examples/DotNetTestSample/test/LibrarySpecs/project.json | 8 ++------ sln/SharedAssemblyInfo.cs | 2 +- sln/src/NSpec/NSpec.nuspec | 2 +- sln/src/NSpec/project.json | 2 +- 5 files changed, 5 insertions(+), 10 deletions(-) diff --git a/examples/DotNetTestSample/README.md b/examples/DotNetTestSample/README.md index a8518129..72f80701 100644 --- a/examples/DotNetTestSample/README.md +++ b/examples/DotNetTestSample/README.md @@ -9,7 +9,6 @@ Highlights: - Test project `project.json` has a `testRunner` property set to `nspec` - Test project targeting `netcoreapp1.0` takes an explicit dependency on `"Microsoft.Extensions.Testing.Abstractions": "1.0.0-preview2-003121"`, due to an issue between .NET Core CLI Tools Preview 2 and NuGet v3 that will not get solved (as *project.json* is being deprecated in favour of MSBuild) -- Test project targeting `net451` takes an explicit dependency on `"Microsoft.DiaSymReader.Native": "1.4.2"` and `"Microsoft.NETCore.Platforms": "1.1.0"` for similar reasons - NSpec is installed into test project as a NuGet package, version 2.0.0 minimum - dotnet-test-nspec runner too is installed into test project as a NuGet package - Tests can be run from command line through *dotnet test*, as in: diff --git a/examples/DotNetTestSample/test/LibrarySpecs/project.json b/examples/DotNetTestSample/test/LibrarySpecs/project.json index 2e0a4221..af7fa92f 100644 --- a/examples/DotNetTestSample/test/LibrarySpecs/project.json +++ b/examples/DotNetTestSample/test/LibrarySpecs/project.json @@ -4,11 +4,11 @@ "testRunner": "nspec", "dependencies": { - "dotnet-test-nspec": "0.2.0", + "dotnet-test-nspec": "0.2.1", "LibraryUnderTest": { "target": "project" }, - "NSpec": "3.0.0", + "NSpec": "3.0.1", "Shouldly": "2.8.2" }, @@ -26,10 +26,6 @@ } }, "net451": { - "dependencies": { - "Microsoft.DiaSymReader.Native": "1.4.2", - "Microsoft.NETCore.Platforms": "1.1.0" - } } } } diff --git a/sln/SharedAssemblyInfo.cs b/sln/SharedAssemblyInfo.cs index cf5b16a4..45a9254a 100644 --- a/sln/SharedAssemblyInfo.cs +++ b/sln/SharedAssemblyInfo.cs @@ -21,6 +21,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.0.0")] +[assembly: AssemblyVersion("3.0.1")] // AssemblyFileVersion not explicitly specified, so it will be same as AssemblyVersion diff --git a/sln/src/NSpec/NSpec.nuspec b/sln/src/NSpec/NSpec.nuspec index 5975ba4b..844b1a8d 100644 --- a/sln/src/NSpec/NSpec.nuspec +++ b/sln/src/NSpec/NSpec.nuspec @@ -2,7 +2,7 @@ NSpec - 3.0.0.0 + 3.0.1.0 NSpec NSpec is a testing framework for .NET. NSpec is heavily inspired by RSpec and Mocha. NSpec is a BDD-style testing framework for .NET. NSpec is intended to drive development by specifying behavior within a context or scenario. NSpec belongs to the xSpec (Context/Specification) family and is heavily inspired by RSpec and Mocha. diff --git a/sln/src/NSpec/project.json b/sln/src/NSpec/project.json index dff534fb..b996fb07 100644 --- a/sln/src/NSpec/project.json +++ b/sln/src/NSpec/project.json @@ -1,5 +1,5 @@ { - "version": "3.0.0.0", + "version": "3.0.1.0", "buildOptions": { "compile": {