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
Remove condition on the import of VisualStudio.targets
This condition has the side effect of changing the packages that we
depend on, depending on the type of MSBuild used to restore packages.
This is because VisualStudio.targets iself contains PackageReferences.
This can cause all sorts of slowdowns when restore needs to rerun a lot.
<ImportProject="VisualStudio.targets"Condition="'$(UsingToolVSSDK)' == 'true' and ('$(IsVsixProject)' == 'true' or '$(IsSwixProject)' == 'true' or '$(GeneratePkgDefFile)' == 'true') and '$(MSBuildRuntimeType)' != 'Core'"/>
18
+
<ImportProject="VisualStudio.targets"Condition="'$(UsingToolVSSDK)' == 'true' and ('$(IsVsixProject)' == 'true' or '$(IsSwixProject)' == 'true' or '$(GeneratePkgDefFile)' == 'true')"/>
0 commit comments