Skip to content

Commit

Permalink
chore(deps): delte net452 transitive dep's in client project
Browse files Browse the repository at this point in the history
  • Loading branch information
GiuseppePiscopo committed Mar 6, 2017
1 parent 7c4c6f3 commit 6cc8a82
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
1 change: 0 additions & 1 deletion examples/DotNetTestSample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 2 additions & 6 deletions examples/DotNetTestSample/test/LibrarySpecs/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},

Expand All @@ -26,10 +26,6 @@
}
},
"net451": {
"dependencies": {
"Microsoft.DiaSymReader.Native": "1.4.2",
"Microsoft.NETCore.Platforms": "1.1.0"
}
}
}
}
2 changes: 1 addition & 1 deletion sln/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion sln/src/NSpec/NSpec.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>NSpec</id>
<version>3.0.0.0</version>
<version>3.0.1.0</version>
<title>NSpec</title>
<summary>NSpec is a testing framework for .NET. NSpec is heavily inspired by RSpec and Mocha.</summary>
<description>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.</description>
Expand Down
2 changes: 1 addition & 1 deletion sln/src/NSpec/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.0.0.0",
"version": "3.0.1.0",

"buildOptions": {
"compile": {
Expand Down

0 comments on commit 6cc8a82

Please sign in to comment.