Add ContinuousIntegrationBuild to DotNetCorePackSettings #3437
RehanSaeed
started this conversation in
Ideas
Replies: 1 comment 5 replies
-
LGTM Current workaround is to use DotNetCoreBuild("./SolutionName.sln", new DotNetCoreBuildSettings
{
// ...
MSBuildSettings = new DotNetCoreMSBuildSettings()
.WithProperty("ContinuousIntegrationBuild", BuildSystem.IsLocalBuild ? "false" : "true")
}); |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
ContinuousIntegrationBuild
is Documented in https://devblogs.microsoft.com/dotnet/producing-packages-with-source-link/#deterministic-builds and is important for creating deterministic builds on different machines and operating systems. Suggested API:Beta Was this translation helpful? Give feedback.
All reactions