1 implementation of ICompilerOptionsHostObject
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\Legacy\AbstractLegacyProject_ICompilerOptionsHostObject.cs (1)
11internal partial class AbstractLegacyProject : ICompilerOptionsHostObject
9 references to ICompilerOptionsHostObject
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\Legacy\AbstractLegacyProject_ICompilerOptionsHostObject.cs (1)
13int ICompilerOptionsHostObject.SetCompilerOptions(string compilerOptions, out bool supported)
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)
58Dim compilerOptionsHost = DirectCast(project, Implementation.ProjectSystem.Interop.ICompilerOptionsHostObject) 81Dim compilerOptionsHost = DirectCast(project, Implementation.ProjectSystem.Interop.ICompilerOptionsHostObject) 104Dim compilerOptionsHost = DirectCast(project, Implementation.ProjectSystem.Interop.ICompilerOptionsHostObject) 124Dim compilerOptionsHost = DirectCast(project, Implementation.ProjectSystem.Interop.ICompilerOptionsHostObject) 144Dim compilerOptionsHost = DirectCast(project, Implementation.ProjectSystem.Interop.ICompilerOptionsHostObject)