removing check for ExtensionsMetadataGenerator in v1 projects

This commit is contained in:
Brett Samblanet 2019-06-12 12:54:46 -07:00
Родитель 5b6f637ee4
Коммит b2393aecf6
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -11,7 +11,7 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ExtensionsMetadataGeneratorVersion>1.1.1</ExtensionsMetadataGeneratorVersion>
<ExtensionsMetadataGeneratorVersion>1.1.2</ExtensionsMetadataGeneratorVersion>
</PropertyGroup>
</Project>

Просмотреть файл

@ -71,8 +71,8 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
***********************************************************************************************
-->
<Target Name="_InitializeFunctionsSdk">
<Error Text="The ExtensionsMetadataGenerator package was not imported correctly. Are you missing '$(_ExtensionsMetadataGeneratorTargetsPath)' or '$(_ExtensionsMetadataGeneratorPropsPath)'?"
Condition="'$(_ExtensionsMetadataGeneratorTargetsImported)' == '' Or '$(_ExtensionsMetadataGeneratorPropsImported)' == ''" />
<Warning Text="The ExtensionsMetadataGenerator package was not imported correctly. Are you missing '$(_ExtensionsMetadataGeneratorTargetsPath)' or '$(_ExtensionsMetadataGeneratorPropsPath)'?"
Condition="($(AzureFunctionsVersion) == 'v2' OR $(AzureFunctionsVersion) == 'v2-prerelease') And ('$(_ExtensionsMetadataGeneratorTargetsImported)' == '' Or '$(_ExtensionsMetadataGeneratorPropsImported)' == '')" />
</Target>
</Project>