dotnet new target windows 具体框架

dotnet new target windows specific framework

有什么方法可以让 dotnet new 使用特定于平台的目标,例如 net6.0-windows10.0.19041.0

这是我希望能够做到的:

dotnet new console --name HelloWindowsApi --framework net6.0-windows10.0.19041.0

我正在尝试创建一个可以使用一些 Windows Runtime APIs 的新控制台应用程序。到目前为止,我发现的唯一方法是在 运行 dotent new.

之后手动编辑项目文件

感谢KalleOlaviNiemitalo:

dotnet new console --name CallWinRTConsole --framework net6.0 --target-framework-override net6.0-windows10.0.22000