Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorEric Mellino <erme@microsoft.com>2017-04-11 00:37:00 +0300
committerEric Mellino <erme@microsoft.com>2017-04-11 00:37:00 +0300
commitae68e07c7175f3ba9fdbeecb08c4720a3cd5fbf5 (patch)
tree26c8b076c3f05d25915688c9f065682487482859 /pkg
parentcb40a892f19b4759f04a6219acf046965efaea9e (diff)
Migrate ToLower() fix into frameworkPackage.targets
Diffstat (limited to 'pkg')
-rw-r--r--pkg/frameworkPackage.targets4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/frameworkPackage.targets b/pkg/frameworkPackage.targets
index e4f32593e9..1ea4adedca 100644
--- a/pkg/frameworkPackage.targets
+++ b/pkg/frameworkPackage.targets
@@ -70,9 +70,9 @@
<Target Name="VerifyNETStandard" AfterTargets="Build">
<ItemGroup>
- <_NETStandardFile Include="$(PackagesDir)$(NETStandardPackageId)\$(NETStandardPackageVersion)\build\netstandard$(NETStandardVersion)\ref\*.dll" />
+ <_NETStandardFile Include="$(PackagesDir)$(NETStandardPackageId.ToLower())\$(NETStandardPackageVersion)\build\netstandard$(NETStandardVersion)\ref\*.dll" />
<!-- force a missing file there are no files found in the package -->
- <_NETStandardFile Include="$(PackagesDir)$(NETStandardPackageId)\$(NETStandardPackageVersion)\build\netstandard$(NETStandardVersion)\ref\MISSING_REF_BUILD" Condition="'@(_NETStandardFile)' == ''" />
+ <_NETStandardFile Include="$(PackagesDir)$(NETStandardPackageId.ToLower())\$(NETStandardPackageVersion)\build\netstandard$(NETStandardVersion)\ref\MISSING_REF_BUILD" Condition="'@(_NETStandardFile)' == ''" />
<_NETStandardMissingFile Include="@(_NETStandardFile->'%(FileName)')" Exclude="@(File->'%(FileName)')" />
<_NETStandardMissingFileError Include="@(_NETStandardMissingFile)" Exclude="@(SuppressNETStandardMissingFile)" />
<_NETStandardSuppressedMissingFile Include="@(_NETStandardMissingFile)" Exclude="@(_NETStandardMissingFileError)" />