mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 14:23:34 +01:00
31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<MsBuildAllProjects>$(MsBuildAllProjects);$(MsBuildThisFileFullPath)</MsBuildAllProjects>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<VersionPrefix>1.4.13</VersionPrefix>
|
|
<PackageReleaseNotes>See CHANGELOG.md</PackageReleaseNotes>
|
|
<PackageIconUrl>https://raw.githubusercontent.com/WireMock-Net/WireMock.Net/master/WireMock.Net-Logo.png</PackageIconUrl>
|
|
<PackageProjectUrl>https://github.com/WireMock-Net/WireMock.Net</PackageProjectUrl>
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/WireMock-Net/WireMock.Net</RepositoryUrl>
|
|
<ApplicationIcon>../../WireMock.Net-Logo.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</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>
|