You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SilkyFowl.Avalonia.FuncUI.LiveView contains a LiveViewWindow that previews a function with a LivePreviewAttribute. Because of this, a dependency of LiveViewWindow, which is not necessary, is mixed into the project that wants to be previewed.
Since LivePreviewAttribute itself has no dependency, it can be solved by separating LiveViewWindow into a separate library.
The text was updated successfully, but these errors were encountered:
This commit addresses issue #25 and includes the following changes:
- Move LivePreviewAttribute from Avalonia.FuncUI.LiveView to a separate project
- Implement minimum functionality for selecting any project for preview in Avalonia.FuncUI.LiveView
- Update LiveViewWindow to use the new LivePreviewAttribute implementation
- Refactor code to use the new LivePreviewAttribute implementation
SilkyFowl.Avalonia.FuncUI.LiveView contains a
LiveViewWindow
that previews a function with aLivePreviewAttribute
. Because of this, a dependency ofLiveViewWindow
, which is not necessary, is mixed into the project that wants to be previewed.Since
LivePreviewAttribute
itself has no dependency, it can be solved by separatingLiveViewWindow
into a separate library.The text was updated successfully, but these errors were encountered: