Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTING.md6
-rw-r--r--kvm.ps12
-rw-r--r--kvm.sh2
-rw-r--r--samples/HelloMvc/project.json17
-rw-r--r--samples/HelloWeb/project.json17
5 files changed, 23 insertions, 21 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e23e36ae23..9eee938f6c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -17,7 +17,7 @@ Please log a new issue in the appropriate GitHub repo. Here are some of the most
* [MVC](https://github.com/aspnet/Mvc)
* [SignalR-Server](https://github.com/aspnet/SignalR-Server)
-The full repo list is [here](https://github.com/aspnet).
+A description of all the repos is [here](https://github.com/aspnet/Home/wiki/Repo-List).
## Other discussions
@@ -53,6 +53,10 @@ Before submitting a feature or substantial code contribution please discuss it w
Here's a few things you should always do when making changes to the code base:
+**Engineering guidelines**
+
+The coding, style, and general engineering guidelines are published on the [Engineering guidelines](https://github.com/aspnet/Home/wiki/Engineering-guidelines) page.
+
**Commit/Pull Request Format**
```
diff --git a/kvm.ps1 b/kvm.ps1
index 9d38c21969..dd0deb9a84 100644
--- a/kvm.ps1
+++ b/kvm.ps1
@@ -38,7 +38,7 @@ function String-IsEmptyOrWhitespace([string]$str) {
if (!$feed)
{
- $feed = "https://www.nuget.org/api/v2";
+ $feed = "https://www.nuget.org/api/v2";
}
$scriptPath = $myInvocation.MyCommand.Definition
diff --git a/kvm.sh b/kvm.sh
index c34a87bc2c..30aff8491f 100644
--- a/kvm.sh
+++ b/kvm.sh
@@ -397,4 +397,4 @@ kvm()
return 0
}
-kvm list default >/dev/null && kvm use default >/dev/null || true \ No newline at end of file
+kvm list default >/dev/null && kvm use default >/dev/null || true
diff --git a/samples/HelloMvc/project.json b/samples/HelloMvc/project.json
index 6dee13b65f..612a8101b2 100644
--- a/samples/HelloMvc/project.json
+++ b/samples/HelloMvc/project.json
@@ -1,18 +1,17 @@
{
- "version": "1.0.0-*",
"dependencies": {
- "Kestrel": "1.0.0-*",
- "Microsoft.AspNet.Diagnostics": "1.0.0-*",
- "Microsoft.AspNet.Hosting": "1.0.0-*",
- "Microsoft.AspNet.Mvc": "6.0.0-*",
- "Microsoft.AspNet.Server.WebListener": "1.0.0-*"
+ "Kestrel": "1.0.0-alpha4",
+ "Microsoft.AspNet.Diagnostics": "1.0.0-alpha4",
+ "Microsoft.AspNet.Hosting": "1.0.0-alpha4",
+ "Microsoft.AspNet.Mvc": "6.0.0-alpha4",
+ "Microsoft.AspNet.Server.WebListener": "1.0.0-alpha4"
},
"commands": {
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5001",
- "Kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
+ "kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
},
- "frameworks": {
+ "frameworks": {
"aspnet50": {},
"aspnetcore50": {}
- }
+ }
} \ No newline at end of file
diff --git a/samples/HelloWeb/project.json b/samples/HelloWeb/project.json
index 69dc296213..531862c90f 100644
--- a/samples/HelloWeb/project.json
+++ b/samples/HelloWeb/project.json
@@ -1,18 +1,17 @@
{
- "version": "1.0.0-*",
"dependencies": {
- "Kestrel": "1.0.0-*",
- "Microsoft.AspNet.Diagnostics": "1.0.0-*",
- "Microsoft.AspNet.Hosting": "1.0.0-*",
- "Microsoft.AspNet.Server.WebListener": "1.0.0-*",
- "Microsoft.AspNet.StaticFiles": "1.0.0-*"
+ "Kestrel": "1.0.0-alpha4",
+ "Microsoft.AspNet.Diagnostics": "1.0.0-alpha4",
+ "Microsoft.AspNet.Hosting": "1.0.0-alpha4",
+ "Microsoft.AspNet.Server.WebListener": "1.0.0-alpha4",
+ "Microsoft.AspNet.StaticFiles": "1.0.0-alpha4"
},
"commands": {
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5001",
- "Kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
+ "kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
},
"frameworks": {
- "aspnet50": {},
+ "aspnet50": {},
"aspnetcore50": {}
- }
+ }
} \ No newline at end of file