14 lines
464 B
XML
14 lines
464 B
XML
<Project>
|
|
<Import Project="..\version.xml" />
|
|
<Import Project="dependencies.props" />
|
|
|
|
<PropertyGroup>
|
|
<!-- This repo does not have solutions to build -->
|
|
<DisableDefaultTargets>true</DisableDefaultTargets>
|
|
<Version>$(VersionPrefix)</Version>
|
|
<Version Condition="'$(VersionSuffix)' != ''">$(Version)-$(VersionSuffix)</Version>
|
|
<Version Condition="'$(BuildNumber)' != ''">$(Version)-$(BuildNumber)</Version>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|