How do I override CopyLocal (Private) setting for references in .NET from MSBUILD

后端 未结 3 822
清酒与你
清酒与你 2020-11-28 08:27

I have been wrestling with this for a few days and after tons of searching I can\'t find the path I should be on.

What I want to do is set up an MSBUILD project that

3条回答
  •  旧巷少年郎
    2020-11-28 08:56

    Try this:

    Set the CustomAfterMicrosoftCommonTargets to C:\foo\filter.targets (or whatever you name the file) and have filter.targets to be:

    
        
          
            False
          
        
    
    

提交回复
热议问题