-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add System.Reflection.Metadata 6.0.1 (#506)
* add System.Reflection.Metadata 6.0.1 * revert changes to unrelated ref packs; fix invalid icon ref * fix invalid attribute
- Loading branch information
1 parent
23a8968
commit 9ced6aa
Showing
6 changed files
with
7,332 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
...encePackages/src/system.reflection.metadata/6.0.1/System.Reflection.Metadata.6.0.1.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))/dir.props" /> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks> | ||
<NuspecFile>$(ArtifactsBinDir)system.reflection.metadata/6.0.1/system.reflection.metadata.nuspec</NuspecFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<OutputPath>$(ArtifactsBinDir)system.reflection.metadata/6.0.1/ref/</OutputPath> | ||
<IntermediateOutputPath>$(ArtifactsObjDir)system.reflection.metadata/6.0.1</IntermediateOutputPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> | ||
<OutputPath>$(ArtifactsBinDir)system.reflection.metadata/6.0.1/lib/</OutputPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
<OutputPath>$(ArtifactsBinDir)system.reflection.metadata/6.0.1/lib/</OutputPath> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="**/ref/$(TargetFramework)/*.cs" /> | ||
<Compile Include="**/lib/$(TargetFramework)/*.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> | ||
<PackageReference Include="NETStandard.Library" Version="$(NETStandardImplicitPackageVersion)" /> | ||
<PackageReference Include="System.Collections.Immutable" Version="6.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
<PackageReference Include="System.Collections.Immutable" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net461" Version="1.0.2" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.