Skip to content

Commit

Permalink
(cake-buildGH-3590) AzurePipelinesBuildInfo Directories File>Director…
Browse files Browse the repository at this point in the history
…yPath

* fixes cake-build#3590
  • Loading branch information
devlead committed Oct 14, 2021
1 parent 226071c commit 016aa1e
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ public AzurePipelinesBuildInfo(ICakeEnvironment environment)
/// <value>
/// The path of the staging directory.
/// </value>
public FilePath ArtifactStagingDirectory => GetEnvironmentString("BUILD_ARTIFACTSTAGINGDIRECTORY");
public DirectoryPath ArtifactStagingDirectory => GetEnvironmentString("BUILD_ARTIFACTSTAGINGDIRECTORY");

/// <summary>
/// Gets the local path on the agent you can use as an output folder for compiled binaries.
/// </summary>
/// <value>
/// The path to the binaries directory.
/// </value>
public FilePath BinariesDirectory => GetEnvironmentString("BUILD_BINARIESDIRECTORY");
public DirectoryPath BinariesDirectory => GetEnvironmentString("BUILD_BINARIESDIRECTORY");

/// <summary>
/// Gets the ID of the record for the completed build.
Expand Down Expand Up @@ -119,23 +119,23 @@ public AzurePipelinesBuildInfo(ICakeEnvironment environment)
/// <value>
/// The source code directory.
/// </value>
public FilePath SourcesDirectory => GetEnvironmentString("BUILD_SOURCESDIRECTORY");
public DirectoryPath SourcesDirectory => GetEnvironmentString("BUILD_SOURCESDIRECTORY");

/// <summary>
/// Gets the local path on the agent where any artifacts are copied to before being pushed to their destination.
/// </summary>
/// <value>
/// The staging directory.
/// </value>
public FilePath StagingDirectory => GetEnvironmentString("BUILD_STAGINGDIRECTORY");
public DirectoryPath StagingDirectory => GetEnvironmentString("BUILD_STAGINGDIRECTORY");

/// <summary>
/// Gets local path on the agent where the test results are created.
/// </summary>
/// <value>
/// The test result directory.
/// </value>
public FilePath TestResultsDirectory => GetEnvironmentString("COMMON_TESTRESULTSDIRECTORY");
public DirectoryPath TestResultsDirectory => GetEnvironmentString("COMMON_TESTRESULTSDIRECTORY");

/// <summary>
/// Gets Azure Pipelines Build TriggeredBy information.
Expand Down

0 comments on commit 016aa1e

Please sign in to comment.