-
Notifications
You must be signed in to change notification settings - Fork 58
Conversation
Re-enable when dotnet/sdk#696 is resolved
@@ -11,35 +11,51 @@ | |||
using Microsoft.Extensions.Logging; | |||
using Xunit; | |||
using Xunit.Sdk; | |||
using Xunit.Abstractions; | |||
using Microsoft.AspNetCore.Testing; |
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.
Sort
@@ -11,35 +11,51 @@ | |||
using Microsoft.Extensions.Logging; | |||
using Xunit; | |||
using Xunit.Sdk; |
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.
sort
|
||
namespace Microsoft.AspNetCore.Testing | ||
{ | ||
public class XunitLogger : ILogger, IDisposable |
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.
Should we add this to Testing?
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.
Yes. aspnet/Testing#243
Disabling is a little different from removing the Standalone project entirely. Shouldn't it still be "ported" |
We don't need separate standalone projects anymore. Standalone vs portable is a publish time decision, not a build decision. |
@@ -0,0 +1,24 @@ | |||
# EditorConfig is awesome:http://EditorConfig.org |
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.
@muratg is this something we want in all the projects?
@natemcmaster Which editors understand this? Does it require plugins?
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.
Which editors understand this?
VS 2017 (no plugins).
VS Code with plugin.
It's not yet enforced by csc, but IIUC they are planning to add that.
Remove project.json and move to MSBuild.
Had to disable standalone tests because of dotnet/sdk#696. I will open an issue to re-enable them.
Resolves #321