You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create new WPF application in Visual Studio 2019 (.NET Core is what I chose)
Create a git repo around the solution.
In the solution directory, drop a Directory.Build.props file with this content to redirect the obj directory to a solution level (for a read only source tree):
1>------ Rebuild All started: Project: WpfApp3, Configuration: Debug Any CPU ------
1>D:\obj\WpfApp3\Debug\netcoreapp3.0\MainWindow.g.cs(58,21,58,38): error CS1504: Source file 'MainWindow.xaml' could not be opened -- Could not find file.
1>D:\obj\WpfApp3\Debug\netcoreapp3.0\App.g.cs(51,21,51,31): error CS1504: Source file 'App.xaml' could not be opened -- Could not find file.
1>Done building project "WpfApp3.csproj" -- FAILED.
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
The text was updated successfully, but these errors were encountered:
Actually, this is still reproing for me, even when the 'fix' for dotnet/wpf#1718 is applied (by setting IncludePackageReferencesDuringMarkupCompilation=true). And anyway, that bug seems to focus on the markup compilation, whereas in my repro the markup compilation completes successfully. It's the subsequent csc in the original project that fails.
obj
directory to a solution level (for a read only source tree):The build succeeds. Now add these elements to the
Directory.Build.props
file:Then build again.
The build will fail:
The text was updated successfully, but these errors were encountered: