Maya
Freshman Member
Posts: 53
Theme: Project 2000 (Im lazy)
CPU: PC Intel Core i5-3470
RAM: 8gb
GPU: GTX 1080
|
Post by Maya on May 6, 2023 14:16:44 GMT -8
So will it be impossible to make this work on eXperience? Of course it's possible, but with one limitation: it only works with another mod (contained in this page) that activates the classic theme (except for window frames). Thank you, unfortunately it messes up file explorer
|
|
faby
Freshman Member
Posts: 45
OS: Windows 7
|
Post by faby on May 12, 2023 19:45:44 GMT -8
the selected text is out of bounds. is there any way to fix this?
|
|
TK50P
New Member
Posts: 9
OS: Windows 7 Enterprise SP1 x64
Theme: Default
CPU: Intel Core i5 10600KF
RAM: 32GB
GPU: NVIDIA GTX 1660 SUPER
|
Post by TK50P on Aug 1, 2023 17:23:26 GMT -8
I know this is possible on older Windows, as I used a program for Win2000 that hijacked the Open/Save dialog and replaced it with it's own. I can't remember what is was though. Bit of a pointless bump, but I finally tracked down the program. It's called File Ex. Website is still online (as of this writing). It was shareware, but the author has released codes to unlock it. www.cottonwoodsw.com/welcome.htmlCodes here: www.cottonwoodsw.com/freereg.htmlI don't know if something can be done with this (I doubt it), but I'd thought I post it here anyway, might be of use to someone. It was paid software at the time of its highest frequency in 2005 on the Wayback machine. Then it seems that it was not until 2020 that it became free (probably based on records from 1998).
|
|
|
Post by anixx on Aug 10, 2023 5:14:12 GMT -8
the selected text is out of bounds. is there any way to fix this? It includes the volume indicator which you somehow have hidden
|
|
aubymori
Sophomore Member
👅👅👅👅👅
Posts: 160
OS: Windows 10 IoT Enterprise LTSC 2021
Theme: Windows 10 Default
CPU: Intel Core i5-9300H
RAM: 8GB
GPU: Intel UHD Graphics 630 / NVIDIA GeForce GTX 1650
|
Post by aubymori on Oct 4, 2023 13:09:25 GMT -8
Installed the Unthemed+NativeFrame mod, bricked my system upon a reboot. Luckily I recovered though.
|
|
|
Post by anixx on Oct 4, 2023 13:59:36 GMT -8
Installed the Unthemed+NativeFrame mod, bricked my system upon a reboot. Luckily I recovered though. Should exclude dwm.exe. Fixed the includes in the OP.
It seems, part of this thread was removed that discussed this issue.
|
|
aubymori
Sophomore Member
👅👅👅👅👅
Posts: 160
OS: Windows 10 IoT Enterprise LTSC 2021
Theme: Windows 10 Default
CPU: Intel Core i5-9300H
RAM: 8GB
GPU: Intel UHD Graphics 630 / NVIDIA GeForce GTX 1650
|
Post by aubymori on Oct 4, 2023 14:02:36 GMT -8
Installed the Unthemed+NativeFrame mod, bricked my system upon a reboot. Luckily I recovered though. Should exclude dwm.exe. Fixed the includes in the OP.
It seems, part of this thread was removed that discussed this issue.
Personally I just excluded all of the system processes listed by Windhawk. Here's what that looks like.
// ==WindhawkMod== // @id untheme // @name Unthemed+NativeFrame // @description Removes composition from windows // @version 0.1 // @include * // @exclude ApplicationFrameHost.exe // @exclude msedge.exe // @exclude chrome.exe // @exclude lsass.exe // @exclude winlogon.exe // @exclude dwm.exe // @exclude logonui.exe // @exclude consent.exe // @compilerOptions -luxtheme // ==/WindhawkMod==
#include <uxtheme.h>
BOOL Wh_ModInit() { SetThemeAppProperties(STAP_ALLOW_NONCLIENT); return TRUE; }
|
|
|
Post by anixx on Oct 4, 2023 14:04:35 GMT -8
The culprit is DWM.
|
|
aubymori
Sophomore Member
👅👅👅👅👅
Posts: 160
OS: Windows 10 IoT Enterprise LTSC 2021
Theme: Windows 10 Default
CPU: Intel Core i5-9300H
RAM: 8GB
GPU: Intel UHD Graphics 630 / NVIDIA GeForce GTX 1650
|
Post by aubymori on Oct 7, 2023 14:00:39 GMT -8
Here are a set of WindHawk mods that replace the Vista-style file picker with classic (Windows 2000/XP) file picker dialogs in all programs. You should already have enabled classic theme by other means (otherwise the window frames will remain themed).
This is the main mod by Cynosphere that replaces the file picker in windows which have declared classic theme.
// ==WindhawkMod== // @id classic-file-picker // @name Classic File Picker // @description Redirect the Windows Vista+ file picker to the Windows XP one // @version 0.1 // @author Cynosphere // @exclude dwm.exe // @exclude ApplicationFrameHost.exe // @compilerOptions -lole32 -lcomdlg32 // ==/WindhawkMod==
// ==WindhawkModReadme== /* # Classic File Picker */ // ==/WindhawkModReadme==
template<class S> CLSID CreateGUID(const S& hexString) { CLSID clsid; CLSIDFromString(hexString, &clsid);
return clsid; }
DWORD g_uiThreadId;
// File Picker dialogs
const CLSID CLSID_FileOpenDialog = CreateGUID(L"{DC1C5A9C-E88A-4dde-A5A1-60F82A20AEF7}"); const CLSID CLSID_FileOpenDialogLegacy = CreateGUID(L"{725F645B-EAED-4fc5-B1C5-D9AD0ACCBA5E}"); const CLSID CLSID_FileSaveDialog = CreateGUID(L"{c0b4e2f3-ba21-4773-8dba-335ec946eb8b}"); const CLSID CLSID_FileSaveDialogLegacy = CreateGUID(L"{AF02484C-A0A9-4669-9051-058AB12B9195}");
using CoCreateInstance_t = decltype(&CoCreateInstance); CoCreateInstance_t CoCreateInstance_Original; HRESULT WINAPI CoCreateInstance_Hook(REFCLSID rclsid, LPUNKNOWN pUnkOuter, DWORD dwClsContext, REFIID riid, LPVOID *ppv) { if (rclsid == CLSID_FileOpenDialog) { return CoCreateInstance_Original(CLSID_FileOpenDialogLegacy, pUnkOuter, dwClsContext, riid, ppv); } else if (rclsid == CLSID_FileSaveDialog) { return CoCreateInstance_Original(CLSID_FileSaveDialogLegacy, pUnkOuter, dwClsContext, riid, ppv); }
return CoCreateInstance_Original(rclsid, pUnkOuter, dwClsContext, riid, ppv); }
BOOL Wh_ModInit() { Wh_SetFunctionHook((void*)CoCreateInstance, (void*)CoCreateInstance_Hook, (void**)&CoCreateInstance_Original); return TRUE; } This is the mod that affects the majority of applications, except Edge and Chrome browsers: it declares the app to be unthemed while keeps the window frame untouched. It is based on the mod by Travis.
// ==WindhawkMod== // @id untheme // @name Unthemed+NativeFrame // @description Removes composition from windows // @version 0.1 // @include * // @exclude dwm.exe // @exclude ApplicationFrameHost.exe // @exclude msedge.exe // @exclude chrome.exe // @exclude steam.exe // @compilerOptions -luxtheme // ==/WindhawkMod==
#include <uxtheme.h>
BOOL Wh_ModInit() { Wh_Log(L"Init"); SetThemeAppProperties(STAP_ALLOW_NONCLIENT); return TRUE; } This is the mod that declares the app unthemed and also sets the window frame to Aero Light. This is needed for apps like Edge and Chrome, whose window frames are glitchy when unthemed.
// ==WindhawkMod== // @id classic-browser-fix // @name Unthemed+Nocomposition // @description Removes composition from windows and sets Light window frame // @version 0.1 // @include msedge.exe // @include chrome.exe // @include steam.exe // @compilerOptions -luxtheme // ==/WindhawkMod==
#include <uxtheme.h>
BOOL Wh_ModInit() { Wh_Log(L"Init"); SetThemeAppProperties(0); return TRUE; }
For 3D border in the open/save dialogs, you also have to apply this mod: this is missing the include directive lol
|
|
|
Post by anixx on Oct 7, 2023 14:20:22 GMT -8
Indeed, fixed.
|
|
Windows 10-7
Sophomore Member
Posts: 233
OS: Windows 11 22H2
Theme: Aero7 - WindowsBlinds 11
RAM: 16gbs
|
Post by Windows 10-7 on Oct 13, 2023 19:02:00 GMT -8
Got it to work for a second, but realized it was for classic theme Any Windhawk mod to enable with without having classic theme? Like itll work but explorer will just appear white, makes sense considering its made for classic explorer, but any work around at the moment? Attachments:
|
|
aubymori
Sophomore Member
👅👅👅👅👅
Posts: 160
OS: Windows 10 IoT Enterprise LTSC 2021
Theme: Windows 10 Default
CPU: Intel Core i5-9300H
RAM: 8GB
GPU: Intel UHD Graphics 630 / NVIDIA GeForce GTX 1650
|
Post by aubymori on Nov 2, 2023 12:14:43 GMT -8
There are many issues with this method. 1. Does not work at all outside of classic theme. 2. Any custom controls (e.g. Notepad's encoding dropdown) will be lost. 3. Attempting to open a folder on .NET applications will not work at all. (see below)
See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text ************** System.Runtime.InteropServices.COMException (0x80040111): Creating an instance of the COM component with CLSID {DC1C5A9C-E88A-4DDE-A5A1-60F82A20AEF7} from the IClassFactory failed due to the following error: 80040111 ClassFactory cannot supply requested class (0x80040111 (CLASS_E_CLASSNOTAVAILABLE)). at AssetStudioGUI.OpenFolderDialog.ShowVistaDialog(IWin32Window owner) in C:\projects\assetstudio\AssetStudioGUI\Components\OpenFolderDialog.cs:line 28 at AssetStudioGUI.OpenFolderDialog.ShowDialog(IWin32Window owner) in C:\projects\assetstudio\AssetStudioGUI\Components\OpenFolderDialog.cs:line 20 at AssetStudioGUI.AssetStudioGUIForm.loadFolder_Click(Object sender, EventArgs e) in C:\projects\assetstudio\AssetStudioGUI\AssetStudioGUIForm.cs:line 158 at System.Threading.Tasks.Task.<>c.<ThrowAsync>b__128_0(Object state)
************** Loaded Assemblies ************** System.Private.CoreLib Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Private.CoreLib.dll ---------------------------------------- AssetStudioGUI Assembly Version: 0.16.47.0 Win32 Version: 0.16.47 CodeBase: file:///C:/Users/Aubrey/Downloads/AssetStudio.net6.v0.16.47/AssetStudioGUI.dll ---------------------------------------- System.Runtime Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Runtime.dll ---------------------------------------- System.Windows.Forms Assembly Version: 6.0.2.0 Win32 Version: 6.0.2423.51809 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.24/System.Windows.Forms.dll ---------------------------------------- System.Windows.Forms.Primitives Assembly Version: 6.0.2.0 Win32 Version: 6.0.2423.51809 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.24/System.Windows.Forms.Primitives.dll ---------------------------------------- System.ComponentModel.Primitives Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.ComponentModel.Primitives.dll ---------------------------------------- System.Runtime.InteropServices Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Runtime.InteropServices.dll ---------------------------------------- System.Drawing.Primitives Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Drawing.Primitives.dll ---------------------------------------- System.Collections.Specialized Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Collections.Specialized.dll ---------------------------------------- AssetStudioUtility Assembly Version: 0.16.47.0 Win32 Version: 0.16.47 CodeBase: file:///C:/Users/Aubrey/Downloads/AssetStudio.net6.v0.16.47/AssetStudioUtility.dll ---------------------------------------- OpenTK.Mathematics Assembly Version: 4.0.0.0 Win32 Version: 4.0.0.0 CodeBase: file:///C:/Users/Aubrey/Downloads/AssetStudio.net6.v0.16.47/OpenTK.Mathematics.dll ---------------------------------------- System.Drawing.Common Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.24/System.Drawing.Common.dll ---------------------------------------- System.Threading Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Threading.dll ---------------------------------------- System.Diagnostics.TraceSource Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Diagnostics.TraceSource.dll ---------------------------------------- System.Collections Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Collections.dll ---------------------------------------- System.Threading.Thread Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Threading.Thread.dll ---------------------------------------- System.ComponentModel.TypeConverter Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.ComponentModel.TypeConverter.dll ---------------------------------------- System.Configuration.ConfigurationManager Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.24/System.Configuration.ConfigurationManager.dll ---------------------------------------- System.ObjectModel Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.ObjectModel.dll ---------------------------------------- AssetStudio Assembly Version: 0.16.47.0 Win32 Version: 0.16.47 CodeBase: file:///C:/Users/Aubrey/Downloads/AssetStudio.net6.v0.16.47/AssetStudio.dll ---------------------------------------- Microsoft.Win32.Primitives Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/Microsoft.Win32.Primitives.dll ---------------------------------------- System.ComponentModel.EventBasedAsync Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.ComponentModel.EventBasedAsync.dll ---------------------------------------- Accessibility Assembly Version: 4.0.0.0 Win32 Version: 6.0.2423.51809 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.24/Accessibility.dll ---------------------------------------- OpenTK.WinForms Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/Users/Aubrey/Downloads/AssetStudio.net6.v0.16.47/OpenTK.WinForms.dll ---------------------------------------- Microsoft.Win32.SystemEvents Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.24/Microsoft.Win32.SystemEvents.dll ---------------------------------------- System.Collections.Concurrent Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Collections.Concurrent.dll ---------------------------------------- System.ComponentModel Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.ComponentModel.dll ---------------------------------------- System.Numerics.Vectors Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Numerics.Vectors.dll ---------------------------------------- System.Diagnostics.FileVersionInfo Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Diagnostics.FileVersionInfo.dll ---------------------------------------- OpenTK.Windowing.Common Assembly Version: 4.0.0.0 Win32 Version: 4.0.0.0 CodeBase: file:///C:/Users/Aubrey/Downloads/AssetStudio.net6.v0.16.47/OpenTK.Windowing.Common.dll ---------------------------------------- System.Memory Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Memory.dll ---------------------------------------- System.Resources.Extensions Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.24/System.Resources.Extensions.dll ---------------------------------------- System.Drawing Assembly Version: 6.0.2.0 Win32 Version: 6.0.2423.51809 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.24/System.Drawing.dll ---------------------------------------- OpenTK.Windowing.Desktop Assembly Version: 4.0.0.0 Win32 Version: 4.0.0.0 CodeBase: file:///C:/Users/Aubrey/Downloads/AssetStudio.net6.v0.16.47/OpenTK.Windowing.Desktop.dll ---------------------------------------- System.Diagnostics.Process Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Diagnostics.Process.dll ---------------------------------------- System.Runtime.InteropServices.RuntimeInformation Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Runtime.InteropServices.RuntimeInformation.dll ---------------------------------------- System.Private.Uri Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Private.Uri.dll ---------------------------------------- System.Security.Cryptography.Algorithms Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Security.Cryptography.Algorithms.dll ---------------------------------------- System.Security.Cryptography.Primitives Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Security.Cryptography.Primitives.dll ---------------------------------------- System.Linq Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Linq.dll ---------------------------------------- System.Xml.ReaderWriter Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Xml.ReaderWriter.dll ---------------------------------------- System.Private.Xml Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Private.Xml.dll ---------------------------------------- System.Text.RegularExpressions Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Text.RegularExpressions.dll ---------------------------------------- System.Net.WebClient Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Net.WebClient.dll ---------------------------------------- System.Text.Encoding.Extensions Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Text.Encoding.Extensions.dll ---------------------------------------- System.Runtime.Serialization.Formatters Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Runtime.Serialization.Formatters.dll ---------------------------------------- System.Xml.XmlSerializer Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Xml.XmlSerializer.dll ---------------------------------------- AssetStudio.PInvoke Assembly Version: 0.16.47.0 Win32 Version: 0.16.47 CodeBase: file:///C:/Users/Aubrey/Downloads/AssetStudio.net6.v0.16.47/AssetStudio.PInvoke.dll ---------------------------------------- System.Collections.NonGeneric Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Collections.NonGeneric.dll ---------------------------------------- Mono.Cecil Assembly Version: 0.11.3.0 Win32 Version: 0.11.3.0 CodeBase: file:///C:/Users/Aubrey/Downloads/AssetStudio.net6.v0.16.47/Mono.Cecil.dll ---------------------------------------- netstandard Assembly Version: 2.1.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/netstandard.dll ---------------------------------------- System.Runtime.CompilerServices.Unsafe Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Runtime.CompilerServices.Unsafe.dll ---------------------------------------- System.Threading.ThreadPool Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Threading.ThreadPool.dll ---------------------------------------- System.Runtime.Loader Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Runtime.Loader.dll ---------------------------------------- System.Diagnostics.StackTrace Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Diagnostics.StackTrace.dll ---------------------------------------- System.Reflection.Metadata Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Reflection.Metadata.dll ---------------------------------------- System.Collections.Immutable Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.Collections.Immutable.dll ---------------------------------------- System.IO.Compression Assembly Version: 6.0.0.0 Win32 Version: 6.0.2423.51814 CodeBase: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.24/System.IO.Compression.dll ----------------------------------------
************** JIT Debugging **************
|
|