How do I suppress showing ILLink

gone back to .net after a while - and suddnely in the solution view in jetbrains - I'm seeing this.

I   NEVER  want to see that.  ever.    how do I suppress it?  

I've tried
* going into my project file and adding this: <ItemGroup>
    <Compile Remove="**\obj\**\*" />
    <Content Remove="**\obj\**\*" />
    <None Remove="**\obj\**\*" />
    <EmbeddedResource Remove="**\obj\**\*" />
</ItemGroup>

* going into jetbrains settings and adding ILLink to the list of excluded files

please, please help me - it's in every project.     I can't imagine why anyone would ever want to see it - even  if they are happy to use it as part of the build process.

0
1 comment

Hello Darren,

That looks like it is included through some .props file. It might affect projects located next to a .props file or anywhere below in the file system. For e.g. C:/Sample/Directory.Build.props file will be affecting C:/Sample/**/AnyProject/AnyProject.xxproj. 

Try this: right-click on a project in Solution Explorer -> select Properties -> select Imports item on the left and look through the list of “Import Locations” files. Look for anything that is located outside .Net SDK:

If that doesn't help, please tell me.

0

Please sign in to leave a comment.