Skip to content

Commit

Permalink
add System.Reflection.Metadata 6.0.1 (#506)
Browse files Browse the repository at this point in the history
* add System.Reflection.Metadata 6.0.1

* revert changes to unrelated ref packs; fix invalid icon ref

* fix invalid attribute
  • Loading branch information
oleksandr-didyk authored Feb 2, 2023
1 parent 23a8968 commit 9ced6aa
Show file tree
Hide file tree
Showing 6 changed files with 7,332 additions and 0 deletions.
2 changes: 2 additions & 0 deletions eng/Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.ComponentModel.Composition.4.5.0.csproj" />

<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\Microsoft.Extensions.Logging.Abstractions.7.0.0.csproj" />

<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Reflection.Metadata.6.0.1.csproj" />
</ItemGroup>

<ItemGroup Condition=" '$(BuildDependencyPackageProjects)' == 'true' ">
Expand Down
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>
Loading

0 comments on commit 9ced6aa

Please sign in to comment.