Skip to content

Commit 8ecf1e0

Browse files
authored
Merge pull request #167 from ivaylokenov/development
Updated ASP.NET Core MVC version to 1.0.0
2 parents 65bcee8 + 137898b commit 8ecf1e0

File tree

106 files changed

+71216
-57830
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+71216
-57830
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1><img src="https://raw.githubusercontent.com/ivaylokenov/MyTested.AspNetCore.Mvc/master/tools/logo.png" align="left" alt="MyTested.WebApi" width="100">&nbsp; MyTested.AspNetCore.Mvc - Fluent testing<br />&nbsp; framework for ASP.NET Core MVC</h1>
1+
<h1><img src="https://raw.githubusercontent.com/ivaylokenov/MyTested.AspNetCore.Mvc/master/tools/logo.png" align="left" alt="MyTested.AspNetCore.Mvc" width="100">&nbsp; MyTested.AspNetCore.Mvc - Fluent testing<br />&nbsp; framework for ASP.NET Core MVC</h1>
22
====================================
33

44
MyTested.AspNetCore.Mvc is a unit testing library (currently in preview version) providing easy fluent interface to test the [ASP.NET Core MVC](https://github.com/aspnet/Mvc) framework. It is testing framework agnostic, so you can combine it with a test runner of your choice (e.g. xUnit, NUnit, etc.).
@@ -9,7 +9,7 @@ It is strongly advised to start with the [tutorial](http://docs.mytestedasp.net/
99

1010
## Installation
1111

12-
You can install this library using NuGet into your test project (or reference it directly in your `project.json` file). Currently MyTested.AspNetCore.Mvc works with ASP.NET Core MVC RC2.
12+
You can install this library using NuGet into your test project (or reference it directly in your `project.json` file). Currently MyTested.AspNetCore.Mvc works with ASP.NET Core MVC 1.0.0.
1313

1414
Install-Package MyTested.AspNetCore.Mvc -Pre
1515

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"projects": [ "src", "test", "samples" ],
33
"sdk": {
4-
"version": "1.0.0-preview1-002702"
4+
"version": "1.0.0-preview2-003121"
55
}
66
}
Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0",
33

44
"dependencies": {
5-
"NETStandard.Library": "1.5.0-rc2-24027",
6-
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
7-
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0-rc2-final",
5+
"NETStandard.Library": "1.6.0-*",
6+
"Microsoft.AspNetCore.Mvc": "1.0.0-*",
7+
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0-*",
88
"ApplicationParts.Models": "1.0.0-*",
99
"ApplicationParts.Services": "1.0.0-*"
1010
},
1111

1212
"frameworks": {
13-
"netstandard1.5": {
14-
"imports": [
15-
"dotnet5.6",
16-
"dnxcore50",
17-
"portable-net45+win8"
18-
]
19-
}
13+
"netstandard1.6": {}
2014
}
2115
}

samples/ApplicationParts/ApplicationParts.Controllers/project.lock.json

Lines changed: 2360 additions & 1965 deletions
Large diffs are not rendered by default.
Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0",
33

44
"dependencies": {
5-
"NETStandard.Library": "1.5.0-rc2-24027",
6-
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0-rc2-final",
7-
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
5+
"NETStandard.Library": "1.6.0-*",
6+
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0-*",
7+
"Microsoft.AspNetCore.Mvc": "1.0.0-*"
88
},
99

1010
"frameworks": {
11-
"netstandard1.5": {
12-
"imports": [
13-
"dotnet5.6",
14-
"dnxcore50",
15-
"portable-net45+win8"
16-
]
17-
}
11+
"netstandard1.6": {}
1812
}
1913
}

0 commit comments

Comments
 (0)