This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Incubator.
Summary
Gets the output assembly path for a SolutionProject
- Assembly
- Cake
.Incubator .dll - Namespace
- Cake
.Incubator . Solution Parser Extensions - Containing Type
- Solution
Parser Extensions
Syntax
public static FilePath GetAssemblyFilePath(this SolutionProject solutionProject, CustomProjectParserResult project)
Examples
Gets an absolute assembly path for a project
var projects = ParseSolution(new FilePath("test.sln")).GetProjects();
project[0].GetAssemblyFilePath();
Parameters
Name | Type | Description |
---|---|---|
solutionProject | SolutionProject | The solutionproject |
project | Custom |
The parsed project |
Return Value
Type | Description |
---|---|
FilePath | The SolutionProject output assembly path |