-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DevOps: ported new version suffix logic to local templates #85
Conversation
… into devops/new-version-suffix-logic
This reverts commit 6119fb5.
|
||
- script: dotnet build --configuration $(buildConfiguration) /p:ContinuousIntegrationBuild=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/p:ContinuousIntegrationBuild=true
should be here
build/templates/build.yml
Outdated
condition: and(succeeded(), eq('${{ parameters.useVersionSuffix }}', 'false')) | ||
condition: and(succeeded(), and(eq('${{ parameters.restoreDependencies }}', 'false'), eq(variables.UseVersionSuffix, 'false'))) | ||
|
||
- script: dotnet build --configuration $(buildConfiguration) --version-suffix $(VersionSuffix) --no-restore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/p:ContinuousIntegrationBuild=true
should be here
build/templates/build.yml
Outdated
displayName: 'dotnet build $(buildConfiguration) with version suffix and with no restore' | ||
condition: and(succeeded(), and(eq('${{ parameters.restoreDependencies }}', 'true'), eq(variables.UseVersionSuffix, 'true'))) | ||
|
||
- script: dotnet build --configuration $(buildConfiguration) --version-suffix $(VersionSuffix) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/p:ContinuousIntegrationBuild=true
should be here
No description provided.