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
Currently the MTP_AssembliesWeaverTask task is invoked every time the project is compiled, which not only imposes an overhead but also breaks incremental compilation.
By adding the following target to my project, I was able to make this task be invoked only for assemblies that don't already exist:
With this target in place, assemblies don't get weaved on every compilation. Everything works fine, and incremental compilation starts working again.
Also you can even enable weaving at design-time with no drawbacks. You can probably even remove the IgnoreAccessChecks property and make this the defaut behaviour.
The text was updated successfully, but these errors were encountered:
Currently the
MTP_AssembliesWeaverTask
task is invoked every time the project is compiled, which not only imposes an overhead but also breaks incremental compilation.By adding the following target to my project, I was able to make this task be invoked only for assemblies that don't already exist:
With this target in place, assemblies don't get weaved on every compilation. Everything works fine, and incremental compilation starts working again.
Also you can even enable weaving at design-time with no drawbacks. You can probably even remove the
IgnoreAccessChecks
property and make this the defaut behaviour.The text was updated successfully, but these errors were encountered: