@@ -4,10 +4,11 @@ namespace BenchmarkDotNet.Toolchains
4
4
{
5
5
public class ArtifactsPaths
6
6
{
7
- public static readonly ArtifactsPaths Empty = new ArtifactsPaths ( "" , "" , "" , "" , "" , "" , "" , "" , "" , "" , "" , "" ) ;
7
+ public static readonly ArtifactsPaths Empty = new ArtifactsPaths ( "" , "" , "" , "" , "" , "" , "" , "" , "" , "" , "" , "" , "" ) ;
8
8
9
9
[ PublicAPI ] public string RootArtifactsFolderPath { get ; }
10
10
[ PublicAPI ] public string BuildArtifactsDirectoryPath { get ; }
11
+ [ PublicAPI ] public string PublishDirectoryPath { get ; }
11
12
[ PublicAPI ] public string BinariesDirectoryPath { get ; }
12
13
[ PublicAPI ] public string IntermediateDirectoryPath { get ; }
13
14
[ PublicAPI ] public string ProgramCodePath { get ; }
@@ -22,6 +23,7 @@ public class ArtifactsPaths
22
23
public ArtifactsPaths (
23
24
string rootArtifactsFolderPath ,
24
25
string buildArtifactsDirectoryPath ,
26
+ string publishDirectoryPath ,
25
27
string binariesDirectoryPath ,
26
28
string intermediateDirectoryPath ,
27
29
string programCodePath ,
@@ -35,6 +37,7 @@ public ArtifactsPaths(
35
37
{
36
38
RootArtifactsFolderPath = rootArtifactsFolderPath ;
37
39
BuildArtifactsDirectoryPath = buildArtifactsDirectoryPath ;
40
+ PublishDirectoryPath = publishDirectoryPath ;
38
41
BinariesDirectoryPath = binariesDirectoryPath ;
39
42
IntermediateDirectoryPath = intermediateDirectoryPath ;
40
43
ProgramCodePath = programCodePath ;
0 commit comments