Fix typo in property name (#876)
This commit is contained in:
parent
5b243991f5
commit
86be67a1f3
|
|
@ -7,7 +7,7 @@
|
|||
<PropertyGroup>
|
||||
<AzureIntegrationProjProperties>
|
||||
RepositoryRoot=$(AzureIntegrationProjectRoot);
|
||||
DotNetRestoreSourcesPropsPath=$(GeneratedRestoreSourcesPropsPath);
|
||||
DotNetRestoreSourcePropsPath=$(GeneratedRestoreSourcesPropsPath);
|
||||
DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath);
|
||||
BuildNumber=$(BuildNumber);
|
||||
Configuration=$(Configuration);
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
<_BuildTemplateProjProperties>
|
||||
$(TemplateProjProperties);
|
||||
SkipAspNetCoreRuntimeInstall=true;
|
||||
DotNetRestoreSourcesPropsPath=$(GeneratedRestoreSourcesPropsPath);
|
||||
DotNetRestoreSourcePropsPath=$(GeneratedRestoreSourcesPropsPath);
|
||||
DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath);
|
||||
SkipTests=true;
|
||||
</_BuildTemplateProjProperties>
|
||||
|
|
@ -60,18 +60,18 @@
|
|||
<Warning Text="Skipping template tests because InstallSharedRuntimeFromPreviousBuild != 'true'." Condition="'$(InstallSharedRuntimeFromPreviousBuild)' != 'true'"/>
|
||||
|
||||
<PropertyGroup>
|
||||
<_BuildTemplateProjProperties>
|
||||
<_TestTemplateProjProperties>
|
||||
$(TemplateProjProperties);
|
||||
SkipAspNetCoreRuntimeInstall=true;
|
||||
DotNetRestoreSourcesPropsPath=$(GeneratedRestoreSourcesPropsPath);
|
||||
DotNetRestoreSourcePropsPath=$(GeneratedRestoreSourcesPropsPath);
|
||||
DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath);
|
||||
NoBuild=true;
|
||||
</_BuildTemplateProjProperties>
|
||||
</_TestTemplateProjProperties>
|
||||
</PropertyGroup>
|
||||
|
||||
<MSBuild Projects="$(MSBuildProjectFullPath)"
|
||||
Targets="Build"
|
||||
Properties="$(_BuildTemplateProjProperties)"
|
||||
Properties="$(_TestTemplateProjProperties)"
|
||||
Condition="'$(InstallSharedRuntimeFromPreviousBuild)' == 'true'" />
|
||||
</Target>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue