int ICompilerOptionsHostObject.SetCompilerOptions(string compilerOptions, out bool supported)
        {
#pragma warning disable CS0618 // Type or member is obsolete (Legacy API that cannot be changed)
            VisualStudioProjectOptionsProcessor.SetCommandLine(compilerOptions);
#pragma warning restore CS0618
            supported = true;
            return(VSConstants.S_OK);
        }
示例#2
0
 int ICompilerOptionsHostObject.SetCompilerOptions(string compilerOptions, out bool supported)
 {
     VisualStudioProjectOptionsProcessor.SetCommandLine(compilerOptions);
     supported = true;
     return(VSConstants.S_OK);
 }