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
Directory.build.props/.targets is a great feature, but when you start to add configuration properties in there and don't really know much about how incremental build works in msbuild, you're going to hit "weird issues".
I'd like the auto-imported files to be automatically added to $(MSBuildAllProjects) so that targets using it as inputs will pick up changes automatically. It's easy to forget the necessary preamble when you start out with an empty msbuild file.. Also, this helps reducing your project build files to the absolute minimum.
The text was updated successfully, but these errors were encountered:
#1299 is probably a little more invasive (but I'd like to see it).
For these special project files, I was thinking about adding it directly in Microsoft.Common.props/.targets.
Directory.build.props
/.targets
is a great feature, but when you start to add configuration properties in there and don't really know much about how incremental build works in msbuild, you're going to hit "weird issues".I'd like the auto-imported files to be automatically added to
$(MSBuildAllProjects)
so that targets using it as inputs will pick up changes automatically. It's easy to forget the necessary preamble when you start out with an empty msbuild file.. Also, this helps reducing your project build files to the absolute minimum.The text was updated successfully, but these errors were encountered: