Closed
Description
I'd be happy to create a PR for this, but couldn't find where the project template is defined:
In classic .NET Framework WPF applications the XAML files (.xaml) are dependentUpon their code-behind partials (.xaml.cs).
This is reflected in the VS solution explorer.
For WPF on Core3 this is not yet the case. It would be easy to add a glob that wildcards this dependency by default:
<ItemGroup>
<Compile Update="**\*.xaml.cs" DependentUpon="%(Filename)" />
</ItemGroup>
If someone could point me to the repository and/or location where the wpf project template is defined I'd be happy to issue a PR to add that.