Implemented interface member:
property
BinOutputPath
Microsoft.VisualStudio.LanguageServices.ProjectSystem.IWorkspaceProjectContext.BinOutputPath
3 writes to BinOutputPath
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (2)
ProjectSystemShim\CPS\CSharpCompilerOptionsTests.cs (2)
88project.BinOutputPath = newBinPath; 95project.BinOutputPath = newBinPath;
Microsoft.VisualStudio.LanguageServices.Implementation (1)
ProjectSystem\CPS\CPSProjectFactory.cs (1)
145project.BinOutputPath = binOutputPath;
9 references to BinOutputPath
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (9)
ProjectSystemShim\CPS\CSharpCompilerOptionsTests.cs (7)
66Assert.Equal(initialBinPath, project.BinOutputPath); 72Assert.Equal(initialBinPath, project.BinOutputPath); 78Assert.Equal(initialBinPath, project.BinOutputPath); 84Assert.Equal(initialBinPath, project.BinOutputPath); 90Assert.Equal(newBinPath, project.BinOutputPath); 97Assert.Equal(expectedNewBinPath, project.BinOutputPath); 104Assert.Equal(expectedNewBinPath, project.BinOutputPath);
ProjectSystemShim\CPS\CSharpReferencesTests.cs (2)
69Assert.Equal(@"C:\project4.dll", project4.BinOutputPath); 119project1.AddMetadataReference(project2.BinOutputPath, MetadataReferenceProperties.Assembly);