-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #573 from jdbrock/jb/feature/propertychanged
Add automatic support for INotifyPropertyChanged via weaver.
- Loading branch information
Showing
6 changed files
with
512 additions
and
68 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Tests | ||
{ | ||
public enum WeaverOptions | ||
{ | ||
RealmOnlyNoPropertyChanged, | ||
RealmBeforePropertyChanged, | ||
RealmAfterPropertyChanged | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="FodyCecil" version="1.29.4" targetFramework="net45" developmentDependency="true" userInstalled="true" /> | ||
<package id="Fody" version="1.29.2" targetFramework="net45" developmentDependency="true" /> | ||
<package id="NUnit" version="3.2.1" targetFramework="net45" /> | ||
<package id="PropertyChanged.Fody" version="1.51.0" targetFramework="net45" developmentDependency="true" /> | ||
</packages> |