C#: Add MSTEST test project and check that the call to vstest doesn't get the UseSharedCompilation=false flag forwarded.

This commit is contained in:
Michael Nebel
2023-06-08 09:58:52 +02:00
parent 65e651506c
commit 2fece9d721
4 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace dotnet_test_mstest;
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
}
}