Skip to content

Commit c37a7c7

Browse files
committed
Fix msbuild warning.
1 parent 06f318a commit c37a7c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Version.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
</PropertyGroup>
6464

6565
<PropertyGroup Label="Version Suffix Handling" Condition="'$(Version)' == '' And '$(VersionSuffix)' == ''">
66-
<VersionSuffix Condition="'$(OfficialVersion)' == '' Or $(OfficialVersion.Contains('-')) And !$(OfficialVersion.EndsWith('-debug'))">$(PreReleaseVersionLabel).$(PreReleaseVersionIteration)$(TargetedEfCoreVersion)</VersionSuffix>
66+
<VersionSuffix Condition="'$(OfficialVersion)' == '' Or ($(OfficialVersion.Contains('-')) And !$(OfficialVersion.EndsWith('-debug')))">$(PreReleaseVersionLabel).$(PreReleaseVersionIteration)$(TargetedEfCoreVersion)</VersionSuffix>
6767
<VersionSuffix Condition="'$(OfficialVersion)' == '' And '$(ContinuousIntegrationTimestamp)' != ''">$(VersionSuffix).ci.$(ContinuousIntegrationTimestamp)</VersionSuffix>
6868
<VersionSuffix Condition="'$(Configuration)' == 'Debug'">$(VersionSuffix).debug</VersionSuffix>
6969
<VersionSuffix Condition="'$(BuildSha)' != ''">$(VersionSuffix)+sha.$(BuildSha)</VersionSuffix>

0 commit comments

Comments
 (0)