This file contains hidden or 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
| <?xml version='1.0'?> | |
| <Obfuscator> | |
| <Var name="InPath" value="." /> | |
| <Var name="OutPath" value="./Obfuscated" /> | |
| <Var name="KeepPublicApi" value="true" /> | |
| <Var name="HidePrivateApi" value="true" /> | |
| <Module file="$(InPath)/Views.dll"> | |
| <SkipType name="!AvaloniaResources" /> | |
| <SkipType name="CompiledAvaloniaXaml*" /> |
This file contains hidden or 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
| using System; | |
| using System.Threading.Tasks; | |
| using System.Windows.Input; | |
| namespace MyAssembly.ViewModels; | |
| /// <summary> | |
| /// Simple implementation of Interaction pattern from ReactiveUI framework. | |
| /// https://www.reactiveui.net/docs/handbook/interactions/ | |
| /// </summary> |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.Runtime.CompilerServices; | |
| namespace AvaloniaUI.Mvvm; | |
| public static class PropertyChangeTrackerExtensions | |
| { | |
| public static PropertyChangeTracker<TRes> WhenAnyValue<TIn, TRes>( |
OlderNewer