forked from dotnet/try-convert
-
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.
- Loading branch information
Showing
11 changed files
with
236 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Text; | ||
|
||
namespace Facts | ||
{ | ||
public static class MSTestFacts | ||
{ | ||
public static ImmutableArray<string> MSTestProps => ImmutableArray.Create( | ||
"MSTest.TestAdapter.props" | ||
); | ||
|
||
public static ImmutableArray<string> MSTestTargets => ImmutableArray.Create( | ||
"Microsoft.TestTools.targets", | ||
"MSTest.TestAdapter.targets" | ||
); | ||
|
||
public static ImmutableArray<Guid> KnownOldMSTestProjectTypeGuids => ImmutableArray.Create( | ||
Guid.Parse("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}"), // C# | ||
Guid.Parse("{3AC096D0-A1C2-E12C-1390-A8335801FDAB}") // Test | ||
); | ||
|
||
public static ImmutableArray<string> MSTestReferences = ImmutableArray.Create( | ||
"Microsoft.VisualStudio.TestPlatform.TestFramework", | ||
"Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions" | ||
); | ||
|
||
public const string IsCodedUITestNodeName = "IsCodedUITest"; | ||
public const string TestProjectTypeNodeName = "TestProjectType"; | ||
public const string UnitTestTestProjectType = "UnitTest"; | ||
public const string UITestExtensionPackagesReferencePathFileName = "UITestExtensionPackages"; | ||
public const string MSTestSDKPackageName = "Microsoft.NET.Test.Sdk"; | ||
public const string MSTestSDKDev16FloatingVersion = "16.*"; // This is probably fine | ||
} | ||
} |
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
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
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
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
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
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
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
Oops, something went wrong.