Skip to content

Commit 1df2d9c

Browse files
authored
chore: Set ContinuousIntegrationBuild and EmbedUntrackedSources MSBuild propery (#926)
1 parent ac9625b commit 1df2d9c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.cake

+3-1
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,11 @@ Task("Create-NuGet-Packages")
132132
NoRestore = true,
133133
NoBuild = true,
134134
IncludeSymbols = true,
135+
SymbolPackageFormat = "snupkg",
135136
OutputDirectory = param.Paths.Directories.NuGetDirectoryPath,
136137
ArgumentCustomization = args => args
137-
.Append("/p:SymbolPackageFormat=snupkg")
138+
.Append("/p:ContinuousIntegrationBuild=true")
139+
.Append("/p:EmbedUntrackedSources=true")
138140
.Append($"/p:Version={param.Version}")
139141
});
140142
});

0 commit comments

Comments
 (0)