@@ -34,7 +34,7 @@ partial class Build : NukeBuild
3434 /// - JetBrains Rider https://nuke.build/rider
3535 /// - Microsoft VisualStudio https://nuke.build/visualstudio
3636 /// - Microsoft VSCode https://nuke.build/vscode
37- public static int Main ( ) => Execute < Build > ( x => x . Test ) ;
37+ public static int Main ( ) => Execute < Build > ( x => x . Test ) ;
3838
3939 [ Parameter ( "Configuration to build - Default is 'Debug' (local) or 'Release' (server)" ) ]
4040 readonly Configuration Configuration = IsLocalBuild ? Configuration . Debug : Configuration . Release ;
@@ -120,7 +120,7 @@ Version Version
120120 ChocolateyDirectory / $ "logexpert.{ VersionString } .nupkg"
121121 ] ;
122122
123- protected override void OnBuildInitialized ( )
123+ protected override void OnBuildInitialized ( )
124124 {
125125 SetVariable ( "DOTNET_CLI_TELEMETRY_OPTOUT" , "1" ) ;
126126
@@ -498,7 +498,7 @@ protected override void OnBuildInitialized ()
498498 }
499499 } ) ;
500500
501- private void ExecuteInnoSetup ( AbsolutePath innoPath )
501+ private void ExecuteInnoSetup ( AbsolutePath innoPath )
502502 {
503503 Process proc = new ( ) ;
504504
@@ -520,12 +520,12 @@ private void ExecuteInnoSetup (AbsolutePath innoPath)
520520 }
521521 }
522522
523- private string ReplaceVersionMatch ( Match match , string replacement )
523+ private string ReplaceVersionMatch ( Match match , string replacement )
524524 {
525525 return $ "{ match . Groups [ 1 ] } { replacement } { match . Groups [ 3 ] } ";
526526 }
527527
528- private void TransformTemplateFile ( AbsolutePath path , bool deleteTemplate )
528+ private void TransformTemplateFile ( AbsolutePath path , bool deleteTemplate )
529529 {
530530 string text = path . ReadAllText ( ) ;
531531 text = text . Replace ( "##version##" , VersionString ) ;
@@ -539,20 +539,20 @@ private void TransformTemplateFile (AbsolutePath path, bool deleteTemplate)
539539 }
540540
541541 [ GeneratedRegex ( @"(\[assembly: AssemblyInformationalVersion\("")([^""]*)(""\)\])" ) ]
542- private static partial Regex AssemblyInformationalVersion ( ) ;
542+ private static partial Regex AssemblyInformationalVersion ( ) ;
543543
544544 [ GeneratedRegex ( @"(\[assembly: AssemblyVersion\("")([^""]*)(""\)\])" ) ]
545- private static partial Regex AssemblyVersion ( ) ;
545+ private static partial Regex AssemblyVersion ( ) ;
546546
547547 [ GeneratedRegex ( @"(\[assembly: AssemblyConfiguration\()(""[^""]*"")(\)\])" ) ]
548- private static partial Regex AssemblyConfiguration ( ) ;
548+ private static partial Regex AssemblyConfiguration ( ) ;
549549
550550 [ GeneratedRegex ( @"(\[assembly: AssemblyFileVersion\("")([^""]*)(""\)\])" ) ]
551- private static partial Regex AssemblyFileVersion ( ) ;
551+ private static partial Regex AssemblyFileVersion ( ) ;
552552
553553 [ GeneratedRegex ( @"\w\w{2}[_]p?[tso]?[erzliasx]+[_rhe]{5}" , RegexOptions . IgnoreCase , "en-GB" ) ]
554- private static partial Regex SFTPPlugin ( ) ;
554+ private static partial Regex SFTPPlugin ( ) ;
555555
556556 [ GeneratedRegex ( "\\ .template$" ) ]
557- private static partial Regex TemplateRegex ( ) ;
557+ private static partial Regex TemplateRegex ( ) ;
558558}
0 commit comments