Browse Source

Fix CI

pull/1461/head
Jumar Macato 8 years ago
parent
commit
ea0bf1793b
  1. 2
      src/Avalonia.Animation/Easing/Easing.cs

2
src/Avalonia.Animation/Easing/Easing.cs

@ -34,7 +34,7 @@ namespace Avalonia.Animation.Easings
{ {
_easingTypes = new Dictionary<string, Type>(); _easingTypes = new Dictionary<string, Type>();
var derivedTypes = AppDomain.CurrentDomain.GetAssemblies()z var derivedTypes = AppDomain.CurrentDomain.GetAssemblies()
.SelectMany(p => p.GetTypes()) .SelectMany(p => p.GetTypes())
.Where(p => p.Namespace == s_thisType.Namespace) .Where(p => p.Namespace == s_thisType.Namespace)
.Where(p => p.IsSubclassOf(s_thisType)) .Where(p => p.IsSubclassOf(s_thisType))

Loading…
Cancel
Save