mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-11 21:10:32 +01:00
19 lines
661 B
XML
19 lines
661 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<MsBuildAllProjects>$(MsBuildAllProjects);$(MsBuildThisFileFullPath)</MsBuildAllProjects>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<VersionPrefix>1.1.9</VersionPrefix>
|
|
</PropertyGroup>
|
|
|
|
<Choose>
|
|
<!-- The environment variable `Prerelease` is set in the azure-pipelines.yml file. -->
|
|
<When Condition=" '$(Prerelease)' != '' ">
|
|
<PropertyGroup>
|
|
<!-- Set the version to x.x.x.x-{Prerelease}-1{Build_BuildId} (this is same buildId as defined in the azure-pipelines.yml file). -->
|
|
<VersionSuffix>$(Prerelease)-1$(BUILD_BUILDID)</VersionSuffix>
|
|
</PropertyGroup>
|
|
</When>
|
|
</Choose>
|
|
</Project> |