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)
89project.BinOutputPath = newBinPath; 96project.BinOutputPath = newBinPath;
Microsoft.VisualStudio.LanguageServices.Implementation (1)
ProjectSystem\CPS\CPSProjectFactory.cs (1)
198project.BinOutputPath = binOutputPath;
8 references to BinOutputPath
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (8)
ProjectSystemShim\CPS\CSharpCompilerOptionsTests.cs (6)
67Assert.Equal(initialBinPath, project.BinOutputPath); 73Assert.Equal(initialBinPath, project.BinOutputPath); 79Assert.Equal(initialBinPath, project.BinOutputPath); 85Assert.Equal(initialBinPath, project.BinOutputPath); 91Assert.Equal(newBinPath, project.BinOutputPath); 98Assert.Equal(expectedNewBinPath, project.BinOutputPath);
ProjectSystemShim\CPS\CSharpReferencesTests.cs (2)
69Assert.Equal(@"C:\project4.dll", project4.BinOutputPath); 119project1.AddMetadataReference(project2.BinOutputPath, MetadataReferenceProperties.Assembly);