-
Notifications
You must be signed in to change notification settings - Fork 111
Description
When developing a WPF project, dotnet/wpf#810 and dotnet/wpf#3963 will cause the WPF "inner build" to omit important elements to source generators, leading to build breaks anywhere you use the generated code as reported by a *_wpftmp.csproj
project file.
For example you may see a compiler error as if the generated types do not exist:
D:\temp\WpfApp1\WpfApp1\MainWindow.xaml.cs(15,25): error CS0234: The type or namespace name 'Sdk' does not exist in the namespace 'Microsoft.Windows' (are you missing an assembly reference?) [D:\temp\WpfApp1\WpfApp1\WpfApp1_2gbqycls_wpftmp.csproj]
To fix this you must use the .NET 5.0.102 SDK and set the following property in your project:
<IncludePackageReferencesDuringMarkupCompilation>true</IncludePackageReferencesDuringMarkupCompilation>
To make sure you are using the SDK with the fix, you may need to add a global.json
file with this content to the root of your repo:
{
"sdk": {
"version": "5.0.102",
"allowPrerelease": false,
"rollForward": "major"
}
}
Here is a fully working minimal sample: wpfsample.zip