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)
89
project.
BinOutputPath
= newBinPath;
96
project.
BinOutputPath
= newBinPath;
Microsoft.VisualStudio.LanguageServices.Implementation (1)
ProjectSystem\CPS\CPSProjectFactory.cs (1)
198
project.
BinOutputPath
= binOutputPath;
8 references to BinOutputPath
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (8)
ProjectSystemShim\CPS\CSharpCompilerOptionsTests.cs (6)
67
Assert.Equal(initialBinPath, project.
BinOutputPath
);
73
Assert.Equal(initialBinPath, project.
BinOutputPath
);
79
Assert.Equal(initialBinPath, project.
BinOutputPath
);
85
Assert.Equal(initialBinPath, project.
BinOutputPath
);
91
Assert.Equal(newBinPath, project.
BinOutputPath
);
98
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);