When I used to create new WPF applications, and wanted to use the new SDK style csproj format, I would always reference MSBuildSdkExtras.
But now with .NET Core 3, I'm not sure if that's needed anymore.
If I have a csproj file like this:
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<UseWPF>true</UseWPF>
<TargetFramework>net452</TargetFramework>
</PropertyGroup>
<!-- Other things omitted -->
</Project>
Everything builds perfectly without referencing MsBuildSdkExtras at all.
So now I'm wondering whether it's still needed, or I can go with a project like above.
Or maybe this is not supported, just works by accident, and might break something? I don't know.
Do you know whether this is supported or not, or do you have any other info regarding this topic?
When I used to create new WPF applications, and wanted to use the new SDK style csproj format, I would always reference MSBuildSdkExtras.
But now with .NET Core 3, I'm not sure if that's needed anymore. If I have a csproj file like this:
Everything builds perfectly without referencing MsBuildSdkExtras at all.
So now I'm wondering whether it's still needed, or I can go with a project like above. Or maybe this is not supported, just works by accident, and might break something? I don't know.
Do you know whether this is supported or not, or do you have any other info regarding this topic?