Skip to content

Commit 3887fab

Browse files
committed
VS - it's 2017. Please default to spaces
1 parent 5e5befb commit 3887fab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.cake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Task("Restore")
2121
GitVersion versionInfo = null;
2222
Task("Version")
2323
.Does(() => {
24-
GitVersion(new GitVersionSettings{
24+
GitVersion(new GitVersionSettings{
2525
UpdateAssemblyInfo = true,
2626
OutputType = GitVersionOutput.BuildServer
2727
});
@@ -48,13 +48,13 @@ Task("Package")
4848
.Does(() => {
4949
var settings = new DotNetCorePackSettings
5050
{
51-
ArgumentCustomization = args=> args.Append(" --include-symbols /p:PackageVersion=" + versionInfo.NuGetVersion),
51+
ArgumentCustomization = args=> args.Append(" --include-symbols /p:PackageVersion=" + versionInfo.NuGetVersion),
5252
OutputDirectory = outputDir,
5353
NoBuild = true
5454
};
55-
55+
5656
DotNetCorePack(bddfyProj, settings);
57-
57+
5858
var releaseNotesExitCode = StartProcess(
5959
@"tools\GitReleaseNotes\tools\gitreleasenotes.exe",
6060
new ProcessSettings { Arguments = ". /o artifacts/releasenotes.md" });

0 commit comments

Comments
 (0)