Skip to content

Commit

Permalink
change version
Browse files Browse the repository at this point in the history
  • Loading branch information
tibel committed Sep 19, 2015
1 parent 6b6e195 commit f03b2b8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@

Weakly is a collection of some useful weak-reference types available as portable class library for **net45+win8+wp8+wpa81** and available through nuget.

Normally it is not possible to call private methods using reflection in Windows Phone and Windows Store Apps. You will get a MethodAccessException.
Weakly solves this problem by using compiled Expressions. So it is not only possible to call private methods but also faster as dynamic invocation.


## Install
Weakly is available through NuGet:

**Install-Package** [Weakly](https://www.nuget.org/packages/Weakly/)


## Content

### Builders
Create compiled Expressions for:
* `Builder.DynamicDelegate` creates compiled version of MethodInfo.Invoke
* `Builder.OpenAction` creates open delegates
* `Builder.OpenFunc` creates open delegates
Expand All @@ -34,14 +33,10 @@ Weakly is available through NuGet:
* `WeakEventHandler`
* `WeakEventSource<TEventArgs>`

### Expressions
* some Helpers

### IO
* `MemoryTributary` is a MemoryStream replacement using multiple memory segments

### Reflection
* `ManagedRuntime` to determine the managed runtime
* `ReflectionPath` to reflect a path of properties
* some Helpers

Expand Down
4 changes: 2 additions & 2 deletions build/Weakly.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<metadata>
<id>Weakly</id>
<title>Weakly</title>
<version>2.6.0</version>
<version>2.7.0</version>
<authors>Thomas Ibel</authors>
<description>Weakly is a collection of some useful weak-reference types available as portable class library for net45+win8+wp8+wpa81.</description>
<language>en-US</language>
<licenseUrl>https://raw.github.com/tibel/Weakly/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/tibel/Weakly</projectUrl>
<iconUrl>https://raw.github.com/tibel/Weakly/master/build/weakly_icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>First Roslyn compatible release</releaseNotes>
<releaseNotes>remove ExpressionHelper, ManagedRuntime and ReflectionHelper.IsReferenceEquatable()</releaseNotes>
<copyright>Copyright Thomas Ibel 2013-2015</copyright>
<tags>
Weakly WeakReference WeakAction WeakFunc WeakDelegate WeakCollection WeakValueDictionary WeakEventHandler WeakEventSource Async Task
Expand Down
4 changes: 2 additions & 2 deletions src/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@

[assembly: CLSCompliant(true)]

[assembly: AssemblyVersion("2.6.0.0")]
[assembly: AssemblyFileVersion("2.6.0.0")]
[assembly: AssemblyVersion("2.7.0.0")]
[assembly: AssemblyFileVersion("2.7.0.0")]

0 comments on commit f03b2b8

Please sign in to comment.