Skip to content

Commit

Permalink
release beta7
Browse files Browse the repository at this point in the history
  • Loading branch information
iamfreid committed Apr 24, 2020
1 parent 752da28 commit dac61aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Twinkle.View.Attributes
/// Marks methods that execute before methods, that defines view
/// </summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public class PreViewDefinitionCriteriaBaseAttribute : TwinkleBaseAttribute
public class PreViewDefinitionCriteriaAttribute : TwinkleBaseAttribute
{

}
Expand Down
2 changes: 1 addition & 1 deletion Twinkle.View/TwinkleView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ internal void GetActiveViews()
{
var viewExtensionsMethods = ReflectionExtensions.GetExtensionMethods(typeof(View), assemblyViews);
var preViewExtensionsMethods = viewExtensionsMethods
.Where(m => m.GetCustomAttributes(typeof(PreViewDefinitionCriteriaBaseAttribute), false).Length > 0)
.Where(m => m.GetCustomAttributes(typeof(PreViewDefinitionCriteriaAttribute), false).Length > 0)
.ToList();
foreach (var preViewExtensionsMethod in preViewExtensionsMethods)
{
Expand Down
2 changes: 1 addition & 1 deletion Twinkle.View/View.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Twinkle.View</id>
<version>1.0.0-beta6</version>
<version>1.0.0-beta7</version>
<authors>Twinkle</authors>
<owners>Twinkle</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down

0 comments on commit dac61aa

Please sign in to comment.