Update condition for skipping custom restore sources in Blazor templates
This commit is contained in:
parent
6c4a7c309d
commit
4259fda63f
|
|
@ -12,7 +12,7 @@
|
||||||
<Target Name="SetTemplateJsonSymbolReplacements">
|
<Target Name="SetTemplateJsonSymbolReplacements">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<IncludeCustomRestoreSourcesValue>true</IncludeCustomRestoreSourcesValue>
|
<IncludeCustomRestoreSourcesValue>true</IncludeCustomRestoreSourcesValue>
|
||||||
<IncludeCustomRestoreSourcesValue Condition="'$(IsFinalBuild)' == 'true' AND '$(VersionSuffix)' == 'rtm-$(BuildNumber)'">false</IncludeCustomRestoreSourcesValue>
|
<IncludeCustomRestoreSourcesValue Condition=" '$(IsFinalBuild)' == 'true' AND ('$(PreReleaseLabel)' == 'servicing' OR '$(PreReleaseLabel)' == 'rtm')">false</IncludeCustomRestoreSourcesValue>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Properties here will be injected into the template config *.json files
|
Properties here will be injected into the template config *.json files
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue