forked from dotnet/AspNetCore.Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish ASPNET Core to Azure (dotnet#4240)
* Publish ASPNET Core to Azure * cleanup * final * italics
- Loading branch information
1 parent
966baa2
commit 0ba263d
Showing
21 changed files
with
75 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+11.3 KB
(190%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/conf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+84.5 KB
(610%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/conf_final.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+496 Bytes
(100%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/conf_servername.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+80.3 KB
(490%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/create_as.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+136 KB
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/file_new_project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+37.1 KB
(220%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/final.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+124 KB
(690%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/hello.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+26.6 KB
(330%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/maas1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3.22 KB
(110%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/mig.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+82.8 KB
(420%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/new_prj.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+99.7 KB
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/new_prj_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+104 KB
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/new_prj_auth.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+102 KB
(1500%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/newrg1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+122 KB
(750%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/pub.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+17.7 KB
(170%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/pubc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+73 KB
(340%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/pubs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+80.3 KB
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/register.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+118 KB
(680%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/show.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+66.1 KB
(680%)
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/_static/sql.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions
9
aspnetcore/tutorials/publish-to-azure-webapp-using-vs/sample/About.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@page | ||
@model AboutModel | ||
@{ | ||
ViewData["Title"] = "About"; | ||
} | ||
<h2>@ViewData["Title"]</h2> | ||
<h3>@Model.Message</h3> | ||
|
||
<p>Hello ASP.NET Core!</p> |