From 20d51d1fbb414217ee9ebb55177ea5523c87450f Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Mon, 6 Nov 2017 12:23:17 -1000 Subject: [PATCH 1/3] Ra/fix r pintro (#4734) * SignalR folder * fix broken bower --- .../sample/RazorPagesMovie/RazorPagesMovie.csproj | 5 ----- .../sample/RazorPagesMovie/wwwroot/css/site.min.css | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/aspnetcore/tutorials/razor-pages/razor-pages-start/sample/RazorPagesMovie/RazorPagesMovie.csproj b/aspnetcore/tutorials/razor-pages/razor-pages-start/sample/RazorPagesMovie/RazorPagesMovie.csproj index 1a898d2161..649a46ec42 100644 --- a/aspnetcore/tutorials/razor-pages/razor-pages-start/sample/RazorPagesMovie/RazorPagesMovie.csproj +++ b/aspnetcore/tutorials/razor-pages/razor-pages-start/sample/RazorPagesMovie/RazorPagesMovie.csproj @@ -15,9 +15,4 @@ - - - - - diff --git a/aspnetcore/tutorials/razor-pages/razor-pages-start/sample/RazorPagesMovie/wwwroot/css/site.min.css b/aspnetcore/tutorials/razor-pages/razor-pages-start/sample/RazorPagesMovie/wwwroot/css/site.min.css index b26e520234..5e93e30ae3 100644 --- a/aspnetcore/tutorials/razor-pages/razor-pages-start/sample/RazorPagesMovie/wwwroot/css/site.min.css +++ b/aspnetcore/tutorials/razor-pages/razor-pages-start/sample/RazorPagesMovie/wwwroot/css/site.min.css @@ -1 +1 @@ -body{padding-top:50px;padding-bottom:20px}.body-content{padding-left:15px;padding-right:15px}.carousel-caption p{font-size:20px;line-height:1.4}.carousel-inner .item img[src$=".svg"]{width:100%}#qrCode{margin:15px}@media screen and (max-width:767px){.carousel-caption{display:none}} +body{padding-top:50px;padding-bottom:20px}.body-content{padding-left:15px;padding-right:15px}.carousel-caption p{font-size:20px;line-height:1.4}.carousel-inner .item img[src$=".svg"]{width:100%}#qrCode{margin:15px}@media screen and (max-width:767px){.carousel-caption{display:none}} \ No newline at end of file From 897872995b9ad2f0a646aaa752542e90ea2bd230 Mon Sep 17 00:00:00 2001 From: DarkDaskin Date: Tue, 7 Nov 2017 03:28:16 +0300 Subject: [PATCH 2/3] Updated example kestrel-hellomvc.service (#4725) Added an environment variable to allow running when www-data does not have write rights. --- aspnetcore/publishing/linuxproduction.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aspnetcore/publishing/linuxproduction.md b/aspnetcore/publishing/linuxproduction.md index 6899977f79..a52af4f24b 100644 --- a/aspnetcore/publishing/linuxproduction.md +++ b/aspnetcore/publishing/linuxproduction.md @@ -153,7 +153,8 @@ Restart=always RestartSec=10 # Restart service after 10 seconds if dotnet service crashes SyslogIdentifier=dotnet-example User=www-data -Environment=ASPNETCORE_ENVIRONMENT=Production +Environment=ASPNETCORE_ENVIRONMENT=Production +Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=false [Install] WantedBy=multi-user.target From 492a070952b7620fb14809c63340f81e17355124 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Mon, 6 Nov 2017 18:31:35 -0600 Subject: [PATCH 3/3] Update link to Logging topic (#4729) --- aspnetcore/data/ef-rp/migrations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/data/ef-rp/migrations.md b/aspnetcore/data/ef-rp/migrations.md index 09ed58c1fe..a2a7fee1ee 100644 --- a/aspnetcore/data/ef-rp/migrations.md +++ b/aspnetcore/data/ef-rp/migrations.md @@ -177,7 +177,7 @@ info: Microsoft.EntityFrameworkCore.Database.Command[200101] Done. ``` -To reduce the level of detail in log messages, can change the log levels in the *appsettings.Development.json* file. For more information, see [Introduction to logging](xref:fundamentals/logging). +To reduce the level of detail in log messages, can change the log levels in the *appsettings.Development.json* file. For more information, see [Introduction to logging](xref:fundamentals/logging/index). Use **SQL Server Object Explorer** to inspect the DB. Notice the addition of an `__EFMigrationsHistory` table. The `__EFMigrationsHistory` table keeps track of which migrations have been applied to the DB. View the data in the `__EFMigrationsHistory` table, it shows one row for the first migration. The last log in the preceding CLI output example shows the INSERT statement that creates this row. @@ -223,4 +223,4 @@ If the `update` command returns the error "Build failed.": >[!div class="step-by-step"] [Previous](xref:data/ef-rp/sort-filter-page) -[Next](xref:data/ef-rp/complex-data-model) \ No newline at end of file +[Next](xref:data/ef-rp/complex-data-model)