1 implementation of SetCompilerOptions
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\Legacy\AbstractLegacyProject_ICompilerOptionsHostObject.cs (1)
13int ICompilerOptionsHostObject.SetCompilerOptions(string compilerOptions, out bool supported)
8 references to SetCompilerOptions
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (3)
ProjectSystemShim\LegacyProject\CSharpCompilerOptionsTests.cs (3)
151Assert.Equal(0, ((ICompilerOptionsHostObject)project).SetCompilerOptions(@"/pdb:C:\a\1.pdb /debug+", out _)); 156Assert.Equal(0, ((ICompilerOptionsHostObject)project).SetCompilerOptions(@"/out:C:\a\2.dll /debug+", out _)); 164Assert.Equal(0, ((ICompilerOptionsHostObject)project).SetCompilerOptions(@"/pdb:C:\a\4.pdb /debug+", out _));
Microsoft.VisualStudio.LanguageServices.UnitTests (5)
ProjectSystemShim\VisualBasicCompilerOptionsTests.vb (5)
60compilerOptionsHost.SetCompilerOptions("/langversion:14", supported) 83compilerOptionsHost.SetCompilerOptions("/langversion:15", supported) 106compilerOptionsHost.SetCompilerOptions("/langversion:Default", supported) 126compilerOptionsHost.SetCompilerOptions("/langversion:15.3", supported) 146compilerOptionsHost.SetCompilerOptions("/langversion:latest", supported)