Fix typo in property name (#876)

This commit is contained in:
Nate McMaster 2018-02-13 11:44:48 -08:00 committed by GitHub
parent 5b243991f5
commit 86be67a1f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -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);

View File

@ -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>