When using Entity Framework Core in an ASP.Net Core application on Visual Studio 2017 I intermittently get the error "Unable to load 'sni.dll'. Strangely though I have found a temporary fix: restarting my PC. I don't know why the error keeps happening, I don't know what the variable could be. [...] read more
The latest Microsoft VS2017 VSIX installer cannot install SSAS project template (Microsoft Analysis Services Projects). I can replicate this issue consistently with the installer. **Note: I already followed the instructions mentioned in similar questions on Stack Overflow including downloading the SSDT installer and running each mini-installer manually from C:\Temp** I [...] read more
I am creating a Windows 10 application that works with files. For the GUI I am using UWP (C#) and for the file processing I want to use the C language (Visual Studio 2019). I have tried these solutions (none of them worked): 1. C program created with Windows Desktop [...] read more
I am unable to install most of the Visual studio extensions(Ex: Episerver, NPM Task runner). During the installation it shows “Digital Signature: Invalid TimeStamp” or “Digital Signature: Null”. Although for some extensions it is showing “Digital Signature: Invalid TimeStamp” but it successfully completes the installation.(Ex: Microsoft visual studio installer projects) [...] read more
I'm trying to write a simple program in Visual Studio 2019 that will write a line in the console when a key is pressed using the Keyboard.IsKeyToggled(Key) Method. I've managed to get the code to build, but now this exception appears whenever it gets to the key detection part. > [...] read more
I'm working with a selfmade C++ DLL for a while. Methods of the DLL are called in a C# project. Everything worked just fine! After I started the project today I get a System.DllNotFound exception. I don't know why... Code of the include: [DllImport(@"D:\abc\xyz\zyx\x64\Debug\Controll.dll", CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I4)] public [...] read more
While running my program, when i open the main window, i get a System.DllNotFoundException. The complete exception i get from vs reads: System.DllNotFoundException HResult=0x80131524 Message=Die DLL "FTDIInterface.dll": Das angegebene Modul wurde nicht gefunden. (Ausnahme von HRESULT: 0x8007007E) kann nicht geladen werden. Source=FTDILib StackTrace: at FTDILib.FTDID2XX_Interface.FTDI_Stop() at FTDILib.SerialConnection.FTDISerial.Stop() at FTDILib.SerialConnection.FTDISerial.Finalize() i [...] read more