-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recreates examples with latest packages #277
Conversation
@@ -1,12 +1,7 @@ | |||
// Copyright (c) Microsoft Corporation. | |||
// Licensed under the MIT license. | |||
// | |||
using Consoto.Banking.AccountService.FeatureFilters; | |||
|
|||
namespace Consoto.Banking.AccountService |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why'd the namespace go away?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ConsoleApp and other VS templates now defaults to https://aka.ms/new-console-template
Namespace automatically matches the project name. I left the namespace, "class Program", "Main" scaffolding in some of the Examples, but wanted to use the new console template in at least a few places to better match the new template. ConsoleApp makes the most sense to be minimalistic to me.
d6720ea
to
651ed76
Compare
@@ -17,7 +17,7 @@ public Task HandleDisabledFeatures(IEnumerable<string> features, ActionExecuting | |||
{ | |||
var result = new ViewResult() | |||
{ | |||
ViewName = "Views/Shared/FeatureNotEnabled.cshtml", | |||
ViewName = "Pages/Shared/FeatureNotEnabled.cshtml", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no "Pages" folder.
No description provided.