Skip to content

Commit 84e13be

Browse files
committed
DocFx solutions renamed.
1 parent 5c1dfde commit 84e13be

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
namespace BuildPostSharpDocumentation;
22

3-
internal class DocFxMetadataSolution : DocFxSolutionBase
3+
internal class DocFxApiSolution : DocFxSolutionBase
44
{
5-
public DocFxMetadataSolution( string solutionPath ) : base( solutionPath, "metadata" )
5+
public DocFxApiSolution( string solutionPath ) : base( solutionPath, "metadata" )
66
{
77
this.BuildMethod = PostSharp.Engineering.BuildTools.Build.Model.BuildMethod.Build;
88
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
namespace BuildPostSharpDocumentation;
66

7-
internal class DocFxBuildSolution : DocFxSolutionBase
7+
internal class DocFxSiteSolution : DocFxSolutionBase
88
{
99
private readonly string _archiveName;
1010

11-
public DocFxBuildSolution( string solutionPath, string archiveName ) : base( solutionPath, "build" )
11+
public DocFxSiteSolution( string solutionPath, string archiveName ) : base( solutionPath, "build" )
1212
{
1313
// Packing is done by the publish command.
1414
this.BuildMethod = PostSharp.Engineering.BuildTools.Build.Model.BuildMethod.Pack;

eng/src/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
{
2929
CanFormatCode = true
3030
},
31-
new DocFxMetadataSolution( "docfx.json" ),
32-
new DocFxBuildSolution( "docfx.json", docPackageFileName )
31+
new DocFxApiSolution( "docfx.json" ),
32+
new DocFxSiteSolution( "docfx.json", docPackageFileName )
3333
],
3434
PublicArtifacts = Pattern.Create(
3535
docPackageFileName

0 commit comments

Comments
 (0)