├── .gitignore ├── LICENSE ├── README.md ├── src ├── .gitignore ├── AboutWindow.xaml ├── AboutWindow.xaml.cs ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── DebugWindow.xaml ├── DebugWindow.xaml.cs ├── ExceptionReporter.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── CPUs.txt │ ├── Windows 11.png │ ├── Windows-11.ico │ ├── WindowsCritical (Custom).png │ ├── WindowsHelp (Custom).png │ ├── WindowsSuccess (Custom).png │ ├── WindowsWarning (Custom).png │ └── circle-cropped (Custom) (1).png ├── SystemRequirementsWindow.xaml ├── SystemRequirementsWindow.xaml.cs ├── Windows 11 Compatibility Checker WPF.csproj ├── Windows 11 Compatibility Checker WPF.csproj.user ├── Windows 11 Compatibility Checker WPF.sln ├── Windows 11.png ├── Windows-11.ico ├── WindowsCritical (Custom).png ├── WindowsHelp (Custom)2.png ├── WindowsSuccess (Custom).png ├── WindowsWarning (Custom).png ├── app.manifest ├── circle-cropped (Custom) (1).png ├── developer_board.svg └── obj │ ├── Windows 11 Compatibility Checker WPF.csproj.nuget.dgspec.json │ ├── Windows 11 Compatibility Checker WPF.csproj.nuget.g.props │ ├── Windows 11 Compatibility Checker WPF_gfyc1y4c_wpftmp.csproj.nuget.dgspec.json │ ├── Windows 11 Compatibility Checker WPF_gfyc1y4c_wpftmp.csproj.nuget.g.props │ ├── Windows 11 Compatibility Checker WPF_gfyc1y4c_wpftmp.csproj.nuget.g.targets │ ├── Windows 11 Compatibility Checker WPF_jvn4m2ui_wpftmp.csproj.nuget.dgspec.json │ ├── Windows 11 Compatibility Checker WPF_jvn4m2ui_wpftmp.csproj.nuget.g.props │ ├── Windows 11 Compatibility Checker WPF_jvn4m2ui_wpftmp.csproj.nuget.g.targets │ ├── Windows 11 Compatibility Checker WPF_pasklnjq_wpftmp.csproj.nuget.dgspec.json │ ├── Windows 11 Compatibility Checker WPF_pasklnjq_wpftmp.csproj.nuget.g.props │ ├── Windows 11 Compatibility Checker WPF_pasklnjq_wpftmp.csproj.nuget.g.targets │ ├── Windows 11 Compatibility Checker WPF_yj0nmhjx_wpftmp.csproj.nuget.dgspec.json │ ├── Windows 11 Compatibility Checker WPF_yj0nmhjx_wpftmp.csproj.nuget.g.props │ └── Windows 11 Compatibility Checker WPF_yj0nmhjx_wpftmp.csproj.nuget.g.targets └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/README.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/AboutWindow.xaml -------------------------------------------------------------------------------- /src/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /src/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/App.xaml -------------------------------------------------------------------------------- /src/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/App.xaml.cs -------------------------------------------------------------------------------- /src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DebugWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/DebugWindow.xaml -------------------------------------------------------------------------------- /src/DebugWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/DebugWindow.xaml.cs -------------------------------------------------------------------------------- /src/ExceptionReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/ExceptionReporter.cs -------------------------------------------------------------------------------- /src/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/FodyWeavers.xml -------------------------------------------------------------------------------- /src/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/MainWindow.xaml -------------------------------------------------------------------------------- /src/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Resources/CPUs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Resources/CPUs.txt -------------------------------------------------------------------------------- /src/Resources/Windows 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Resources/Windows 11.png -------------------------------------------------------------------------------- /src/Resources/Windows-11.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Resources/Windows-11.ico -------------------------------------------------------------------------------- /src/Resources/WindowsCritical (Custom).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Resources/WindowsCritical (Custom).png -------------------------------------------------------------------------------- /src/Resources/WindowsHelp (Custom).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Resources/WindowsHelp (Custom).png -------------------------------------------------------------------------------- /src/Resources/WindowsSuccess (Custom).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Resources/WindowsSuccess (Custom).png -------------------------------------------------------------------------------- /src/Resources/WindowsWarning (Custom).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Resources/WindowsWarning (Custom).png -------------------------------------------------------------------------------- /src/Resources/circle-cropped (Custom) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Resources/circle-cropped (Custom) (1).png -------------------------------------------------------------------------------- /src/SystemRequirementsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/SystemRequirementsWindow.xaml -------------------------------------------------------------------------------- /src/SystemRequirementsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/SystemRequirementsWindow.xaml.cs -------------------------------------------------------------------------------- /src/Windows 11 Compatibility Checker WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Windows 11 Compatibility Checker WPF.csproj -------------------------------------------------------------------------------- /src/Windows 11 Compatibility Checker WPF.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Windows 11 Compatibility Checker WPF.csproj.user -------------------------------------------------------------------------------- /src/Windows 11 Compatibility Checker WPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Windows 11 Compatibility Checker WPF.sln -------------------------------------------------------------------------------- /src/Windows 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Windows 11.png -------------------------------------------------------------------------------- /src/Windows-11.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/Windows-11.ico -------------------------------------------------------------------------------- /src/WindowsCritical (Custom).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/WindowsCritical (Custom).png -------------------------------------------------------------------------------- /src/WindowsHelp (Custom)2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/WindowsHelp (Custom)2.png -------------------------------------------------------------------------------- /src/WindowsSuccess (Custom).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/WindowsSuccess (Custom).png -------------------------------------------------------------------------------- /src/WindowsWarning (Custom).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/WindowsWarning (Custom).png -------------------------------------------------------------------------------- /src/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/app.manifest -------------------------------------------------------------------------------- /src/circle-cropped (Custom) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/circle-cropped (Custom) (1).png -------------------------------------------------------------------------------- /src/developer_board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/developer_board.svg -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_gfyc1y4c_wpftmp.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_gfyc1y4c_wpftmp.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_gfyc1y4c_wpftmp.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_gfyc1y4c_wpftmp.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_gfyc1y4c_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_gfyc1y4c_wpftmp.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_jvn4m2ui_wpftmp.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_jvn4m2ui_wpftmp.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_jvn4m2ui_wpftmp.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_jvn4m2ui_wpftmp.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_jvn4m2ui_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_jvn4m2ui_wpftmp.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_pasklnjq_wpftmp.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_pasklnjq_wpftmp.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_pasklnjq_wpftmp.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_pasklnjq_wpftmp.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_pasklnjq_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_pasklnjq_wpftmp.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_yj0nmhjx_wpftmp.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_yj0nmhjx_wpftmp.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_yj0nmhjx_wpftmp.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_yj0nmhjx_wpftmp.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/obj/Windows 11 Compatibility Checker WPF_yj0nmhjx_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangegrouptech/Windows-11-Compatibility-Checker/HEAD/src/obj/Windows 11 Compatibility Checker WPF_yj0nmhjx_wpftmp.csproj.nuget.g.targets -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 3.0 --------------------------------------------------------------------------------