You've already forked linux-packaging-mono
Imported Upstream version 5.8.0.22
Former-commit-id: df344e34b07851d296efb3e6604c8db42b6f7aa3
This commit is contained in:
parent
5f4a27cc8a
commit
7d05485754
25
external/corefx/pkg/frameworkPackage.targets
vendored
25
external/corefx/pkg/frameworkPackage.targets
vendored
@@ -17,6 +17,7 @@
|
||||
<LibFileTargetPath Condition="'$(LibFileTargetPath)' == '' AND '$(PackageTargetRuntime)' != ''">runtimes/$(PackageTargetRuntime)/lib/$(TargetFramework)</LibFileTargetPath>
|
||||
|
||||
<NativeFileTargetPath Condition="'$(NativeFileTargetPath)' == '' AND '$(PackageTargetRuntime)' != ''">runtimes/$(PackageTargetRuntime)/native</NativeFileTargetPath>
|
||||
<NativeBinDir Condition="'$(PackageTargetRuntimeSuffix)' == 'aot'">$(NativeBinDir)_aot</NativeBinDir>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- Bring in ref content from binplaced ref props -->
|
||||
@@ -53,7 +54,7 @@
|
||||
<!-- force a missing file if native build is absent -->
|
||||
<NativeFile Include="$(NativeBinDir)/MISSING_NATIVE_BUILD" Condition="'@(NativeFile)' == ''" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<Target Name="_CheckForFiles">
|
||||
<Error Condition="'$(IncludeReferenceFiles)' == 'true' AND '@(RefFile)' == ''"
|
||||
Text="IncludeReferenceFiles was specified but no file props were found in '$(RefBinDir)'" />
|
||||
@@ -62,7 +63,7 @@
|
||||
<Error Condition="'$(IncludeNativeFiles)' == 'true' AND '@(NativeFile)' == ''"
|
||||
Text="IncludeNativeFiles was specified but no files were found in '$(NativeBinDir)'" />
|
||||
</Target>
|
||||
|
||||
|
||||
<Target Name="IncludeFiles">
|
||||
<PropertyGroup>
|
||||
<_projectDirLength>$(ProjectDir.Length)</_projectDirLength>
|
||||
@@ -73,7 +74,7 @@
|
||||
<File Include="@(RefFile)">
|
||||
<TargetPath Condition="'%(RefFile.TargetPath)' == ''">$(RefFileTargetPath)%(RefFile.SubFolder)</TargetPath>
|
||||
</File>
|
||||
|
||||
|
||||
<!-- Include lib -->
|
||||
<File Include="@(LibFile)">
|
||||
<TargetPath Condition="'%(LibFile.TargetPath)' == '' ">$(LibFileTargetPath)%(LibFile.SubFolder)</TargetPath>
|
||||
@@ -106,8 +107,8 @@
|
||||
</ItemGroup>
|
||||
</Target>
|
||||
|
||||
<Target Name="VerifyClosure"
|
||||
DependsOnTargets="GetClosureFiles"
|
||||
<Target Name="VerifyClosure"
|
||||
DependsOnTargets="GetClosureFiles"
|
||||
AfterTargets="Build"
|
||||
Inputs="%(ClosureFile.FileSet)"
|
||||
Outputs="batching-on-FileSet-metadata">
|
||||
@@ -126,15 +127,21 @@
|
||||
|
||||
</Target>
|
||||
|
||||
<Target Name="VerifyDuplicateTypes"
|
||||
DependsOnTargets="GetClosureFiles"
|
||||
<Target Name="VerifyDuplicateTypes"
|
||||
DependsOnTargets="GetClosureFiles"
|
||||
AfterTargets="Build"
|
||||
Inputs="%(ClosureFile.FileSet)"
|
||||
Outputs="batching-on-FileSet-metadata">
|
||||
<PropertyGroup>
|
||||
<_fileSet>%(ClosureFile.FileSet)</_fileSet>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<_dupTypeFileName Include="@(ClosureFile->'%(FileName)')">
|
||||
<Original>%(Identity)</Original>
|
||||
</_dupTypeFileName>
|
||||
<_dupTypeFileName Include="@(FrameworkClosureFile->'%(FileName)')" Exclude="@(_dupTypeFileName)" Condition="'$(_fileSet)' == '%(FrameworkClosureFile.FileSet)'">
|
||||
<Original>%(Identity)</Original>
|
||||
</_dupTypeFileName>
|
||||
<_dupTypeFileNamesFiltered Include="@(_dupTypeFileName)" Exclude="@(ExcludeFromDuplicateTypes)"/>
|
||||
<_dupTypeFileFiltered Include="@(_dupTypeFileNamesFiltered->'%(Original)')"/>
|
||||
</ItemGroup>
|
||||
@@ -145,8 +152,8 @@
|
||||
|
||||
</Target>
|
||||
|
||||
<Target Name="VerifyNETStandard"
|
||||
DependsOnTargets="GetClosureFiles"
|
||||
<Target Name="VerifyNETStandard"
|
||||
DependsOnTargets="GetClosureFiles"
|
||||
AfterTargets="Build"
|
||||
Inputs="%(ClosureFile.FileSet)"
|
||||
Outputs="batching-on-FileSet-metadata">
|
||||
|
||||
Reference in New Issue
Block a user