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
Returns the parsed projects output assembly extension
- Assembly
- Cake
.Incubator .dll - Namespace
- Cake
.Incubator .Project - Containing Type
- Project
Parser Extensions
Syntax
public static string GetExtension(this CustomProjectParserResult projectParserResult)
Examples
Gets the output assembly extension
CustomParseProjectResult project = ParseProject(new FilePath("test.csproj"), "Release");
project.GetExtension(); // ".dll" or ".exe"
Parameters
Name | Type | Description |
---|---|---|
projectParserResult | Custom |
the parsed project |
Return Value
Type | Description |
---|---|
string | the output assembly's file extension |