Skip to content

Commit fd4e572

Browse files
committed
Updating to v1.4
1 parent 4c3f6e3 commit fd4e572

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

NetStandardPolyfills.UnitTests.Net40/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
[assembly: AssemblyTitle("AgileObjects.NetStandardPolyfills.UnitTests.Net40")]
55
[assembly: ComVisible(false)]
66

7-
[assembly: AssemblyVersion("1.3.0.0")]
8-
[assembly: AssemblyFileVersion("1.3.0.0")]
7+
[assembly: AssemblyVersion("1.4.0.0")]
8+
[assembly: AssemblyFileVersion("1.4.0.0")]

NetStandardPolyfills/NetStandardPolyfills.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
<DefineConstants>$(DefineConstants);NET_STANDARD</DefineConstants>
2929
</PropertyGroup>
3030

31+
<PropertyGroup>
32+
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net35'">$(MSBuildProgramFiles32)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client</FrameworkPathOverride>
33+
</PropertyGroup>
34+
3135
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
3236
<Reference Include="System" />
3337
<Reference Include="Microsoft.CSharp" />

NetStandardPolyfills/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
using System.Security;
33

44
[assembly: AssemblyTitle("AgileObjects.NetStandardPolyfills")]
5-
[assembly: AssemblyDescription("Type and Reflection polyfill extension methods for .NET Standard v1.0 and .NET v4.0.")]
5+
[assembly: AssemblyDescription("Type and Reflection polyfill extension methods for .NET Standard v1.0+ and .NET v3.5+")]
66

77
[assembly: AllowPartiallyTrustedCallers]

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![NuGet](http://img.shields.io/nuget/v/AgileObjects.NetStandardPolyfills.svg)](https://www.nuget.org/packages/AgileObjects.NetStandardPolyfills)
44
[![Build status](https://ci.appveyor.com/api/projects/status/pjjjlotswo3330g7/branch/master?svg=true)](https://ci.appveyor.com/project/SteveWilkes/netstandardpolyfills/branch/master)
55

6-
A set of Type and Reflection polyfill extension methods for .NET Standard v1.0 and .NET v4.0.
6+
A set of Type and Reflection polyfill extension methods for .NET Standard v1.0+ and .NET v3.5+.
77

88
### Type Info:
99

@@ -111,10 +111,15 @@ A set of Type and Reflection polyfill extension methods for .NET Standard v1.0 a
111111
* ParameterInfo.IsParamsArray()
112112
* PropertyInfo.IsPublic()
113113
* PropertyInfo.IsStatic()
114+
* PropertyInfo.IsReadable()
115+
* PropertyInfo.IsWritable()
114116
* PropertyInfo.IsIndexer()
115117
* PropertyInfo.GetAccessors(bool nonPublic)
116118
* PropertyInfo.GetGetter(bool nonPublic)
117119
* PropertyInfo.GetSetter(bool nonPublic)
120+
* MethodInfo.IsImplicitOperator()
121+
* MethodInfo.IsExplicitOperator()
122+
* MemberInfo.HasAttribute&lt;TAttribute&gt;()
118123

119124
### Download
120125

common.props

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1010
<RepositoryType>git</RepositoryType>
1111
<RepositoryUrl>https://github.com/AgileObjects/NetStandardPolyfills</RepositoryUrl>
12-
<Summary>Type and Reflection polyfill extension methods for .NET Standard 1.0 and .NET 4.0</Summary>
13-
<Description>Type and Reflection polyfill extension methods for .NET Standard 1.0 and .NET 4.0</Description>
14-
<Version>1.3.0</Version>
15-
<VersionPrefix>1.3.0</VersionPrefix>
16-
<AssemblyVersion>1.3.0.0</AssemblyVersion>
17-
<FileVersion>1.3.0.0</FileVersion>
12+
<Summary>Type and Reflection polyfill extension methods for .NET Standard 1.0+ and .NET 3.5+</Summary>
13+
<Description>Type and Reflection polyfill extension methods for .NET Standard 1.0+ and .NET 3.5+</Description>
14+
<Version>1.4.0</Version>
15+
<VersionPrefix>1.4.0</VersionPrefix>
16+
<AssemblyVersion>1.4.0.0</AssemblyVersion>
17+
<FileVersion>1.4.0.0</FileVersion>
1818
</PropertyGroup>
1919

2020
</Project>

0 commit comments

Comments
 (0)