We use devenv to create the source code on the command line, for example:
devenv xyz.sln /build
I noticed that even if the GUI is not open, intellisense is still loading. Messages like this make me believe this:
[Failure] Could not find file 'C:\xyz\Services\Platform\DataProcessor\WebServiceClient.g.cs'.
This is a generated file, so of course it does not exist at the beginning. In any case, such messages indicate that intellisense is running, and therefore resources are being lost.
Can I disable it when devenv builds the code on the command line, but did it allow otherwise?
Explanation
The assembly will not work! This is due to the fact that from the point of view of the assembly there are no problems - the source dependency files are generated before projects that actually depend on them. So, in terms of clean assembly, everything is in order.
This error is generated by Intellisense, which looks ahead and notices that some projects link to non-existing files. This is completely unnecessary when devenv is used to build on the command line, on the contrary, it creates noise at the console output.
visual-studio-2015 intellisense
mark
source share