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