ProjectParserExtensions.

GetAssemblyFilePath(CustomProjectParserResult) Method

Summary

Gets a parsed projects output assembly path

Syntax

public static FilePath GetAssemblyFilePath(this CustomProjectParserResult projectParserResult)

Examples

Returns the absolute project assembly file path, respects build config and platform settings
CustomParseProjectResult project = ParseProject(new FilePath("test.csproj"), "Release");
project.GetAssemblyFilePath(); // returns '/root/project/bin/release/test.dll'
NOTE: This does not currently support how runtime identifiers affect outputs

Attributes

Type Description
ObsoleteAttribute

Parameters

Name Type Description
projectParserResult CustomProjectParserResult the parsed project

Return Value

Type Description
FilePath the output assembly path