diff --git a/samples/dotnetcore/getting-started/mywebapi/Controllers/ValuesController.cs b/samples/dotnetcore/getting-started/mywebapi/Controllers/ValuesController.cs index 9be3feab9..0b2db672e 100644 --- a/samples/dotnetcore/getting-started/mywebapi/Controllers/ValuesController.cs +++ b/samples/dotnetcore/getting-started/mywebapi/Controllers/ValuesController.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; diff --git a/samples/dotnetcore/getting-started/mywebapi/Program.cs b/samples/dotnetcore/getting-started/mywebapi/Program.cs index 38b696078..98b7a64bc 100644 --- a/samples/dotnetcore/getting-started/mywebapi/Program.cs +++ b/samples/dotnetcore/getting-started/mywebapi/Program.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/samples/dotnetcore/getting-started/mywebapi/Startup.cs b/samples/dotnetcore/getting-started/mywebapi/Startup.cs index 82bfcde70..210f93de6 100644 --- a/samples/dotnetcore/getting-started/mywebapi/Startup.cs +++ b/samples/dotnetcore/getting-started/mywebapi/Startup.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; diff --git a/samples/dotnetcore/getting-started/webfrontend/Controllers/HomeController.cs b/samples/dotnetcore/getting-started/webfrontend/Controllers/HomeController.cs index 48fc20a7a..f4d7b9651 100644 --- a/samples/dotnetcore/getting-started/webfrontend/Controllers/HomeController.cs +++ b/samples/dotnetcore/getting-started/webfrontend/Controllers/HomeController.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; diff --git a/samples/dotnetcore/getting-started/webfrontend/Models/ErrorViewModel.cs b/samples/dotnetcore/getting-started/webfrontend/Models/ErrorViewModel.cs index a2e0a2b55..be617be14 100644 --- a/samples/dotnetcore/getting-started/webfrontend/Models/ErrorViewModel.cs +++ b/samples/dotnetcore/getting-started/webfrontend/Models/ErrorViewModel.cs @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + using System; namespace webfrontend.Models diff --git a/samples/dotnetcore/getting-started/webfrontend/Program.cs b/samples/dotnetcore/getting-started/webfrontend/Program.cs index 16665345d..46f59db3d 100644 --- a/samples/dotnetcore/getting-started/webfrontend/Program.cs +++ b/samples/dotnetcore/getting-started/webfrontend/Program.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/samples/dotnetcore/getting-started/webfrontend/Startup.cs b/samples/dotnetcore/getting-started/webfrontend/Startup.cs index 49bc16b8d..d8bab5678 100644 --- a/samples/dotnetcore/getting-started/webfrontend/Startup.cs +++ b/samples/dotnetcore/getting-started/webfrontend/Startup.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; diff --git a/samples/dotnetcore/getting-started/webfrontend/Views/Home/About.cshtml b/samples/dotnetcore/getting-started/webfrontend/Views/Home/About.cshtml index 3674e37a8..e6e0a36da 100644 --- a/samples/dotnetcore/getting-started/webfrontend/Views/Home/About.cshtml +++ b/samples/dotnetcore/getting-started/webfrontend/Views/Home/About.cshtml @@ -1,4 +1,7 @@ -@{ + + +@{ ViewData["Title"] = "About"; }