diff --git a/build_projects/dotnet-cli-build/CompileTargets.cs b/build_projects/dotnet-cli-build/CompileTargets.cs index 1519019ca..9d08a07ff 100644 --- a/build_projects/dotnet-cli-build/CompileTargets.cs +++ b/build_projects/dotnet-cli-build/CompileTargets.cs @@ -115,7 +115,7 @@ namespace Microsoft.DotNet.Cli.Build if (!result.Success) { return result; - } + } if (CurrentPlatform.IsWindows) { @@ -278,7 +278,7 @@ namespace Microsoft.DotNet.Cli.Build // Generate .version file var version = buildVersion.NuGetVersion; var content = $@"{c.BuildContext["CommitHash"]}{Environment.NewLine}{version}{Environment.NewLine}"; - File.WriteAllText(Path.Combine(sdkOutputDirectory, ".version"), content); + File.WriteAllText(Path.Combine(sdkOutputDirectory, ".version"), content); return c.Success(); } diff --git a/src/Microsoft.DotNet.Configurer/INuGetCachePrimer.cs b/src/Microsoft.DotNet.Configurer/INuGetCachePrimer.cs index 321e6fe8b..75c7dac5a 100644 --- a/src/Microsoft.DotNet.Configurer/INuGetCachePrimer.cs +++ b/src/Microsoft.DotNet.Configurer/INuGetCachePrimer.cs @@ -3,8 +3,8 @@ namespace Microsoft.DotNet.Configurer { - public interface INuGetCachePrimer - { - void PrimeCache(); - } + public interface INuGetCachePrimer + { + void PrimeCache(); + } } \ No newline at end of file diff --git a/src/Microsoft.DotNet.Configurer/INuGetCacheSentinel.cs b/src/Microsoft.DotNet.Configurer/INuGetCacheSentinel.cs index 73d05f1fa..2be2e1150 100644 --- a/src/Microsoft.DotNet.Configurer/INuGetCacheSentinel.cs +++ b/src/Microsoft.DotNet.Configurer/INuGetCacheSentinel.cs @@ -3,10 +3,10 @@ namespace Microsoft.DotNet.Configurer { - public interface INuGetCacheSentinel - { - bool Exists(); + public interface INuGetCacheSentinel + { + bool Exists(); - void CreateIfNotExists(); - } + void CreateIfNotExists(); + } } \ No newline at end of file