This commit is contained in:
Eugene Sadovoi 2020-04-02 14:27:34 -07:00
Родитель 763e01bd3c
Коммит 5477bb85bf
3 изменённых файлов: 5 добавлений и 2 удалений

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

@ -1,7 +1,7 @@
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<Version>5.11.1</Version> <Version>5.11.2</Version>
<PackageReleaseNotes>This package is compatible with NET Standard 2.0, Net Core 2.0, .NET 4.0, 4.5, 4.6, and 4.7 frameworks.</PackageReleaseNotes> <PackageReleaseNotes>This package is compatible with NET Standard 2.0, Net Core 2.0, .NET 4.0, 4.5, 4.6, and 4.7 frameworks.</PackageReleaseNotes>
</PropertyGroup> </PropertyGroup>

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

@ -1,6 +1,7 @@
#if NET40 #if NET40
namespace System.Reflection namespace System.Reflection
{ {
using System.Collections.Generic;
using Unity; using Unity;
internal class TypeInfo internal class TypeInfo
@ -145,6 +146,8 @@ namespace System.Reflection
namespace Unity namespace Unity
{ {
using System;
using System.Linq;
using System.Reflection; using System.Reflection;

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

@ -19,7 +19,7 @@
<SignAssembly>true</SignAssembly> <SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>package.snk</AssemblyOriginatorKeyFile> <AssemblyOriginatorKeyFile>package.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign> <DelaySign>false</DelaySign>
<TargetFrameworks>netstandard2.0;net47;net46;net45;netcoreapp2.0</TargetFrameworks> <TargetFrameworks>netstandard2.0;net47;net46;net45;net40;netcoreapp2.0</TargetFrameworks>
</PropertyGroup> </PropertyGroup>