You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[StackOverflow](https://stackoverflow.com/questions/tagged/asp.net-5) with the `asp.net-5` or `entity-framework-7` tag
28
28
*[JabbR chat room](https://jabbr.net/#/rooms/aspnetvnext) for real-time discussions with the community and the people who work on the project
29
29
30
30
@@ -41,15 +41,15 @@ Here are questions you can answer before you file a bug to make sure you're not
41
41
5. What operating system are you using?
42
42
6. What version of IIS are you using?
43
43
44
-
GitHub supports [markdown](http://github.github.com/github-flavored-markdown/), so when filing bugs make sure you check the formatting before clicking submit.
44
+
GitHub supports [markdown](https://help.github.com/articles/github-flavored-markdown/), so when filing bugs make sure you check the formatting before clicking submit.
45
45
46
46
47
47
## Contributing code and content
48
48
You will need to sign a [Contributor License Agreement](https://cla2.dotnetfoundation.org/) before submitting your pull request. To complete the Contributor License Agreement (CLA), you will need to submit a request via the form and then electronically sign the Contributor License Agreement when you receive the email containing the link to the document. This needs to only be done once for any .NET Foundation OSS project.
49
49
50
50
Make sure you can build the code. Familiarize yourself with the project workflow and our coding conventions. If you don't know what a pull request is read this article: https://help.github.com/articles/using-pull-requests.
51
51
52
-
Before submitting a feature or substantial code contribution please discuss it with the team and ensure it follows the product roadmap. You might also read these two blogs posts on contributing code: [Open Source Contribution Etiquette](http://tirania.org/blog/archive/2010/Dec-31.html) by Miguel de Icaza and [Don't "Push" Your Pull Requests](http://www.igvita.com/2011/12/19/dont-push-your-pull-requests/) by Ilya Grigorik. Note that all code submissions will be rigorously reviewed and tested by the ASP.NET and Entity Framework teams, and only those that meet an extremely high bar for both quality and design/roadmap appropriateness will be merged into the source.
52
+
Before submitting a feature or substantial code contribution please discuss it with the team and ensure it follows the product roadmap. You might also read these two blogs posts on contributing code: [Open Source Contribution Etiquette](http://tirania.org/blog/archive/2010/Dec-31.html) by Miguel de Icaza and [Don't "Push" Your Pull Requests](https://www.igvita.com/2011/12/19/dont-push-your-pull-requests/) by Ilya Grigorik. Note that all code submissions will be rigorously reviewed and tested by the ASP.NET and Entity Framework teams, and only those that meet an extremely high bar for both quality and design/roadmap appropriateness will be merged into the source.
53
53
54
54
Here's a few things you should always do when making changes to the code base:
55
55
@@ -64,7 +64,7 @@ Summary of the changes (Less than 80 chars)
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This guide is designed to get you started building applications with the latest development versions ASP.NET 5 and DNX. This means nightly builds and potentially broken or unstable packages.
4
4
5
-
If you want a more stable, released, experience then you should go to http://www.asp.net/vnext.
5
+
If you want a more stable, released, experience then you should go to https://www.asp.net/vnext.
6
6
7
7
## What you need
8
8
@@ -40,7 +40,7 @@ where dnvm
40
40
41
41
## OS X
42
42
43
-
See the instructions on the ASP.NET 5 Documentation site: [Installing ASP.NET 5 on Mac OS X](http://docs.asp.net/en/latest/getting-started/installing-on-mac.html)
43
+
See the instructions on the ASP.NET 5 Documentation site: [Installing ASP.NET 5 on Mac OS X](https://docs.asp.net/en/latest/getting-started/installing-on-mac.html)
44
44
45
45
## Linux
46
46
@@ -69,13 +69,13 @@ You should also be able to run `dnx` and see the help text of the `dnx` command.
69
69
4. You should see a bunch of output as all the dependencies of the app are downloaded from MyGet.
70
70
5. Run the sample using the appropriate DNX command:
71
71
- For the console app run `dnx run`.
72
-
- For the web apps run `dnx web` on Windows or `dnx kestrel` on OS X/Linux.
72
+
- For the web apps run `dnx kestrel`.
73
73
6. You should see the output of the console app or a message that says the site is now started.
74
74
7. You can navigate to the web apps in a browser by navigating to `http://localhost:5001` or `http://localhost:5004` if running on OS X/Linux.
0 commit comments