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 a parsed projects output assembly path
- Assembly
- Cake
.Incubator .dll - Namespace
- Cake
.Incubator .Project - Containing Type
- Project
Parser Extensions
Syntax
public static FilePath GetAssemblyFilePath(this CustomProjectParserResult projectParserResult)
Examples
Returns the absolute project assembly file path, respects build config and platform settings
NOTE: This does not currently support how runtime identifiers affect outputs
CustomParseProjectResult project = ParseProject(new FilePath("test.csproj"), "Release");
project.GetAssemblyFilePath(); // returns '/root/project/bin/release/test.dll'
Attributes
| Type | Description |
|---|---|
| ObsoleteAttribute |
Parameters
| Name | Type | Description |
|---|---|---|
| projectParserResult | Custom |
the parsed project |
Return Value
| Type | Description |
|---|---|
| FilePath | the output assembly path |
