使用 dotnet CLI 在 VScode 中测试 .net4.8

testing .net4.8 in VScode using dotnet CLI

我正在尝试将使用 Visual Studio 生成的旧的非 SDK 样式的 mstest 项目转换为仅使用 Visual Studio 代码的新的 SDK 样式的项目。

我阅读并关注了 this little how-to,但这仅适用于 .NET 核心和更新版本;不适用于 .NET 框架。

我需要我的项目同时针对这两者。如果我这样做

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFrameworks>net48;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
  </PropertyGroup>

  <ItemGroup Condition="'$(TargetFramework)' == 'net48'">
    <PackageReference Include="Microsoft.VisualStudio.UnitTesting" Version="11.0.50727.1" />
  </ItemGroup>

  <ItemGroup Condition="'$(TargetFramework)' != 'net48'">
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
    <PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
    <PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
    <PackageReference Include="coverlet.collector" Version="3.1.0" />
  </ItemGroup>

</Project>

并像这样添加一些测试

using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace MyTests {

    [TestClass]
    public class UnitTest1
    {
        [TestMethod]
        public void TestTwoPlusTwoIsFour()
        {
            Assert.IsTrue(2 + 2 == 4);
        }
    }

}

和 运行 dotnet test 在我的 csproj 上,然后只有 netcoreapp3.1net5.0net6.0 得到测试。 net48 没有出现在我的控制台输出中的任何地方。

我需要做什么才能测试所有四个框架?

似乎我 使用 dotnet test 但需要 msbuild。 (感谢@Heinzi 的评论。)

我可以运行这样:

"C:\Program Files (x86)\Microsoft Visual Studio19\Enterprise\Common7\IDE\mstest.exe" /testcontainer:"$(MSBuildProjectDirectory)$(OutputPath)$(ProjectName).dll"

如果可以incorporated into my dotnet test call就好了,所以我不需要两次调用...