C
C#•3w ago
Paul

Visual Studio includes only x86 dlls in build

I have a .NET Framework 4.8 WPF project set to x64 and Prefer32Bit set to false. The library .net framework projects are also set to x64 but in the final output the dlls from the system and nuget are all x86 but my Project exe and and my libraries are x64. Does anyone have an idea how to solve and get x64 only?
44 Replies
mtreit
mtreit•3w ago
Is the executable x64? I believe managed assemblies on Windows always appear to be x86 to tools like filever, but the IL will get jitted to x64.
Paul
PaulOP•3w ago
yes the exe is x64
mtreit
mtreit•3w ago
Then you should be fine.
Paul
PaulOP•3w ago
the problem is if i install the app with a MSI installer and try to start the exe i get System.BadImageFormatException okay but dumpbin.exe can only show my x86 or x64
mtreit
mtreit•3w ago
That sounds like a x64 DLL trying to be loaded into a 32-bit process...
Paul
PaulOP•3w ago
ok, strange. debuging in vs works
wasabi
wasabi•3w ago
A native one. Are you taking about native dlls?
Paul
PaulOP•3w ago
okay, i'll do mostly .net framework dlls from nuget and system and some sqlite3
wasabi
wasabi•3w ago
Well figure out which dll is being loaded. And the arch of the running process.
Paul
PaulOP•3w ago
ok ilspy shows AnyCPU (64-bit preferred)
wasabi
wasabi•3w ago
I don't think IL spy matters much here. You need to see what arch the running process is in.
mtreit
mtreit•3w ago
Actually I guess you can get BadImageFormatException mixing and matching x86 and x64 either way; I think I've just always experienced it where the DLL being loaded was x64. This sounds more like an issue loading a native DLL than the managed assemblies.
Paul
PaulOP•3w ago
if i try to execute my exe i get following in windows events: Description: The process was terminated due to an unhandled exception.
Exception information: System.BadImageFormatException
Exception details: System.BadImageFormatException
at Microsoft.Extensions.Hosting.HostBuilder.InitializeHostingEnvironment()
at Microsoft.Extensions.Hosting.HostBuilder.Build()
at THWin2.App..cctor()
Inner Exception: System.TypeInitializationException
at THWin2.App.Main() any idea how i can find out where the issue lies?
mtreit
mtreit•3w ago
Is your .NET Framework install x86 somehow?
Paul
PaulOP•3w ago
you mean the installer project? i have the visual studio setup project thing and set the target platform to x64
wasabi
wasabi•3w ago
Yeah I'll bet it's sqlite
Paul
PaulOP•3w ago
i have those three sql dlls from Microsoft.Data.Sqlite -a---- 11.09.2024 22:14 11776 SQLitePCLRaw.batteries_v2.dll -a---- 11.09.2024 22:12 51200 SQLitePCLRaw.core.dll -a---- 11.09.2024 22:12 66048 SQLitePCLRaw.provider.dynamic_cdecl.dll and the pkg ref is in a library project with <PlatformTarget>x64</PlatformTarget> and in ilspy they all show: // Architecture: AnyCPU (64-bit preferred)
mtreit
mtreit•3w ago
ILSpy only runs on managed assemblies. You likely have some native assemblies attempting to be loaded. Run the program under a debugger like windbg and you should see the modload spew of the DLL that is attemption to be loaded right before it fails I think. Hmm actually it might not show that if it fails.
Paul
PaulOP•3w ago
but Microsoft.Data.SQLite in general should just work on x64?
mtreit
mtreit•3w ago
It should.
Paul
PaulOP•3w ago
ok windbg only shows: ModLoad: 00007fffbe3c0000 00007fffbe623000 ntdll.dll ModLoad: 00007fffa17a0000 00007fffa180d000 C:\WINDOWS\SYSTEM32\MSCOREE.DLL ModLoad: 00007fffbd350000 00007fffbd417000 C:\WINDOWS\System32\KERNEL32.dll ModLoad: 00007fffbb720000 00007fffbbae9000 C:\WINDOWS\System32\KERNELBASE.dll (7388.9a8c): Break instruction exception - code 80000003 (first chance) ntdll!LdrpDoDebuggerBreak+0x35: 00007fff`be4e14a9 cc int 3
mtreit
mtreit•3w ago
You need to type g <Enter> but I don't think it will show the DLL name when it fails. But try it.
Paul
PaulOP•3w ago
ok that is longer:
Paul
PaulOP•3w ago
ok with !pe i get: Exception Type: System.BadImageFormatException Message: The file or assembly "System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" or one of its dependencies was not found. Reference assemblies should not be loaded for execution. They can only be loaded in a reflection-only load context. (Exception from HRESULT: 0x80131058) Inner Exception: System.BadImageFormatException (Use !PrintException 000001b6c2ff9770 to see more details.)
mtreit
mtreit•3w ago
Does lmv m System.ValueTuple show anything interesting?
Paul
PaulOP•3w ago
here is the log. I'm not an expert for windbg but it seems it expects system.valuetuple version 4.0.3.0 but loads 4.6.26515.6
Paul
PaulOP•3w ago
ok so i can run the exe in the bin\x64\Debug but if it gets installed by the msi setup it will fail to launch
mtreit
mtreit•3w ago
Diff the folder where the executable is after the MSI install with the bin\x64\Debug folder and see what's different. Something must be different.
Paul
PaulOP•3w ago
whats interesting is the filesystem browser for the setup project shows System.valuetuple v4.0.3 and the dll in bin and actually installed is 4.6... and the System.ValueTuple is 24kb in the debug folder and 21kb in the installed okay i found the issue copying all the en-US like folders solves the issue so i guess this did not add tot he primary output of the wpf project and therefore was not included but thanks to all for trying to help oh and some dlls issues like e_sqlite3.dll and some others not beeing included Okay, the setup install depdendency detection thing seems to be completely broken. there are dlls that exist in the msi but not the build folder of my project
mtreit
mtreit•3w ago
I haven't built an MSI in about 20 years so no idea about that 🙂
Paul
PaulOP•3w ago
I would also rather not to but I have to so ....
Lex Li
Lex Li•3w ago
If you were using Visual Studio Setup Project, that's doomed. Complex dependency resolution is too much for that tool, and manual setup is always recommended.
Paul
PaulOP•3w ago
it always uses 4.7.2 even though i set it to 4.8. Can you recommend a simple alternative? maybe wix v3
Lex Li
Lex Li•3w ago
WiX 5 might be better, but most working samples out there are with v3.
Paul
PaulOP•3w ago
i know v3 is deprecated but it is still in visual studio marketplace and the clickonce installer does have problems with the Microsoft.Windows.Common-Controls thing and Windows Server 2008 doesn't like it. Maybe WIX v5 also works. I'll try it also wix seems to be payed now at firegiant
Lex Li
Lex Li•3w ago
.NET installers are with v3 still, so I am not considering it deprecated yet (just won't receive updates/support from FireGiant).
Paul
PaulOP•3w ago
oh, okay. thanks for the information. i guess than i'll try it first because of simplicity
Lex Li
Lex Li•3w ago
v5 keeps the community version free. You don't need to pay unless you want to use the advanced features/VS integration.
Paul
PaulOP•3w ago
since you are a ms employee do you know where i can find these go.microsoft.com style .NET Framework web installer download links because it's what i see ms use but i can only find the more complicated and probably temporary download links on the dotnet.microsoft.com
Lex Li
Lex Li•3w ago
I don't think there are any "Web Installers" for .NET Core/.NET. Do you just want a place to find all .NET Core/.NET installers (and their download links)?
Paul
PaulOP•3w ago
found it. if you download there is a if it doesn't start link which is the go.microsoft.com one for .net framework
Lex Li
Lex Li•3w ago
I see. So you prefer go.microsoft.com links to the alternative links.
Lex Li
Lex Li•3w ago
I suppose those links will remain valid for a relative long time, till a day .NET Framework goes out of sight.

Did you find this page helpful?