I'm working with a WPF app that was written using the ModernUI framework. I'm wondering what versions of the .NET Framework does the ModernUI support?
Asked
Active
Viewed 70 times
-3
-
1the .net framework doesn't support/require modernui. its the other way around. – Daniel A. White Apr 17 '19 at 17:26
-
Daniel, are you saying that any version of the .NET Framework, will support the ModernUI framework? – Rod Apr 17 '19 at 17:28
-
you'll have to ask the author or do some digging on the repo – Daniel A. White Apr 17 '19 at 17:29
-
The author hasn't answered any questions in the issues, since 2017. I'll see if I can figure it out looking through their code. – Rod Apr 17 '19 at 17:30
-
For anyone else who might wonder, according to the Readme.txt file (dated June 11, 2013) it the ModernUI will work up to .NET 4.5. I'm guessing any newer, regular .NET framework will work. Sorry for asking the question, Daniel. – Rod Apr 17 '19 at 17:37
1 Answers
1
The ModernUI
assemblies target .NET Framework 4.5 which means that the library is compatible with any version equal to or larger than 4.5.
You can confirm this by looking at the <TargetFrameworkVersion>
elements in the .csproj
files on GitHub:
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>

mm8
- 163,881
- 10
- 57
- 88