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