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
Can VS 2017 be supported this way? Do we need to?
One possibility - multitarget .NET Framework and .NET Core; the .NET Framework version should be merged using Costura and packaged for VS 2017
ATM it seems that debugger-side dlls written in .NET Core for visualizers are not seen by Visual Studio. We'll have to do this in .NET Framework, and merge using Costura.
domains:
serialization models
visualizer object source
view models + views
visualizer
visualizer:
serialization models into multitarget debuggee dlls
everything else into NET Framework debugger dll
reference to some debuggee dll is required, for use of serialization models
wpf control library:
(deploy as nuget package)
serialization models + view models + views
constructor for view model from actual type (not serialization model)
test projects reference wpf control library
(it will have a dependency on WPF, use .NET Core 3)
The text was updated successfully, but these errors were encountered:
Before:
One possibility - multitarget .NET Framework and .NET Core; the .NET Framework version should be merged using Costura and packaged for VS 2017
ATM it seems that debugger-side dlls written in .NET Core for visualizers are not seen by Visual Studio. We'll have to do this in .NET Framework, and merge using Costura.
During repo restructure:
appveyor.yml
remove files from old repo; add links to new reposAfter:
move all the code to a .NET Core 3.1 project (UI.Core); modifications made to this projectadd a post-build step to copy all files into UI.Fx targeting .NET Frameworkremove dependency on MultiSelectTreeViewhttps://github.com/agileobjects/ReadableExpressions/issues/47
Some more details:
The text was updated successfully, but these errors were encountered: