Skip to content

Commit 8d0210c

Browse files
committed
Run ReSharper code cleanup
1 parent 83bda77 commit 8d0210c

29 files changed

+3208
-3227
lines changed

build/Build.cs

+17-7
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,24 @@
2222
[ShutdownDotNetAfterServerBuild]
2323
class Build : NukeBuild
2424
{
25-
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
26-
public Configuration Configuration => IsLocalBuild ? Configuration.Debug : Configuration.Release;
25+
[Parameter(
26+
"Whether to auto-detect the branch name - this is okay for a local build, but should not be used under CI.")]
27+
readonly bool AutoDetectBranch = IsLocalBuild;
2728

28-
[Parameter("Branch name for OctoVersion to use to calculate the version number. Can be set via the environment variable OCTOVERSION_CurrentBranch.", Name = "OCTOVERSION_CurrentBranch")]
29+
[Parameter(
30+
"Branch name for OctoVersion to use to calculate the version number. Can be set via the environment variable OCTOVERSION_CurrentBranch.",
31+
Name = "OCTOVERSION_CurrentBranch")]
2932
readonly string BranchName;
30-
[Parameter("Whether to auto-detect the branch name - this is okay for a local build, but should not be used under CI.")]
31-
readonly bool AutoDetectBranch = IsLocalBuild;
32-
[OctoVersion(UpdateBuildNumber = true, BranchParameter = nameof(BranchName), AutoDetectBranchParameter = nameof(AutoDetectBranch), Framework = "net6.0")]
33+
34+
[OctoVersion(UpdateBuildNumber = true, BranchParameter = nameof(BranchName),
35+
AutoDetectBranchParameter = nameof(AutoDetectBranch), Framework = "net6.0")]
3336
readonly OctoVersionInfo OctoVersionInfo;
3437

3538
[Solution] readonly Solution Solution;
3639

40+
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
41+
public Configuration Configuration => IsLocalBuild ? Configuration.Debug : Configuration.Release;
42+
3743
AbsolutePath SourceDirectory => RootDirectory / "source";
3844
AbsolutePath TestsDirectory => RootDirectory / "tests";
3945
AbsolutePath ArtifactsDirectory => RootDirectory / "artifacts";
@@ -48,13 +54,15 @@ class Build : NukeBuild
4854
EnsureCleanDirectory(ArtifactsDirectory);
4955
EnsureCleanDirectory(PublishDirectory);
5056
});
57+
5158
Target Restore => _ => _
5259
.DependsOn(Clean)
5360
.Executes(() =>
5461
{
5562
DotNetRestore(s => s
5663
.SetProjectFile(Solution));
5764
});
65+
5866
Target Compile => _ => _
5967
.DependsOn(Restore)
6068
.Executes(() =>
@@ -65,6 +73,7 @@ class Build : NukeBuild
6573
.SetVersion(OctoVersionInfo.FullSemVer)
6674
.EnableNoRestore());
6775
});
76+
6877
Target Test => _ => _
6978
.DependsOn(Compile)
7079
.Executes(() =>
@@ -93,7 +102,8 @@ class Build : NukeBuild
93102
.AddProperty("Version", OctoVersionInfo.FullSemVer)
94103
);
95104

96-
TeamCity.Instance?.PublishArtifacts(ArtifactsDirectory / $"Octopus.CoreParsers.Hcl.{OctoVersionInfo.FullSemVer}.nupkg");
105+
TeamCity.Instance?.PublishArtifacts(ArtifactsDirectory /
106+
$"Octopus.CoreParsers.Hcl.{OctoVersionInfo.FullSemVer}.nupkg");
97107
});
98108

99109
Target CopyToLocalPackages => _ => _

0 commit comments

Comments
 (0)