dll

Difference between vcruntime140d_app.dll and vcruntime140d.dll

允我心安 提交于 2020-02-02 13:11:47
问题 I'm unable to execute my Qt application because Qt5Widgetsd.dll depends on a vcruntime140d_app.dll, but my VS2015 installation only has a vcruntime140d.dll and I'm not able to find much information about vcruntime140d_app.dll on google. Does anyone know what the difference between the two are, why Qt5Widgetsd.dll depends on vcruntime140d_app.dll instead of vcruntime140d.dll and how I could get my hands on vcruntime140d_app.dll? I have tried reinstalling VS2015 and running the vcredist

Difference between vcruntime140d_app.dll and vcruntime140d.dll

家住魔仙堡 提交于 2020-02-02 13:04:51
问题 I'm unable to execute my Qt application because Qt5Widgetsd.dll depends on a vcruntime140d_app.dll, but my VS2015 installation only has a vcruntime140d.dll and I'm not able to find much information about vcruntime140d_app.dll on google. Does anyone know what the difference between the two are, why Qt5Widgetsd.dll depends on vcruntime140d_app.dll instead of vcruntime140d.dll and how I could get my hands on vcruntime140d_app.dll? I have tried reinstalling VS2015 and running the vcredist

Difference between vcruntime140d_app.dll and vcruntime140d.dll

有些话、适合烂在心里 提交于 2020-02-02 13:04:37
问题 I'm unable to execute my Qt application because Qt5Widgetsd.dll depends on a vcruntime140d_app.dll, but my VS2015 installation only has a vcruntime140d.dll and I'm not able to find much information about vcruntime140d_app.dll on google. Does anyone know what the difference between the two are, why Qt5Widgetsd.dll depends on vcruntime140d_app.dll instead of vcruntime140d.dll and how I could get my hands on vcruntime140d_app.dll? I have tried reinstalling VS2015 and running the vcredist

Delphi: Calling a function from a vc++ dll that exports a interface / class

跟風遠走 提交于 2020-02-02 12:52:18
问题 i have some trouble accessing a dll written in vc++ that exports an interface. First i tried to use classes, but after some google-search i came to the solution, that this i not possible. I just want to make sure, that the plugin interface can accessed, by using other languages like c++. Delphi Interface IPlugIn = interface function GetName: WideString; stdcall; end; Delphi Plugin call procedure TForm1.Button5Click(Sender: TObject); var hLib: Cardinal; MLoadPlugIn: TLoadPlugIn; PlugIn:

Asp.net Core Load Assembly

ⅰ亾dé卋堺 提交于 2020-02-02 12:12:46
问题 I am tring to load some .dll files from a folder: var fileNames = Directory .GetFiles(path, "*.dll", searchOption); var assemblyNames = fileNames .Select(AssemblyLoadContext.GetAssemblyName); List<Assembly> assemblies = new List<Assembly>(); foreach (AssemblyName assemblyName in assemblyNames) { assemblies.Add(Assembly.Load(assemblyName)); } But somehow the assembly cannot be loaded: FileNotFoundException, Could not load file or assembly [...] The system cannot find the file specified. How is

Embedded dll resources

我的未来我决定 提交于 2020-02-02 02:46:53
问题 Is there a clean way of accessing embedded resources (css/js/images etc) inside a dll. For example, from an aspx page, can something similar to the below be used? <script type="text/javascript" src="<%= ResolveUrl("~/My.Dll.Namespace.File.js") %>"></script> 回答1: I would suggest to take a look at WebResource.axd and the way how you can access embedded resources, like for example here: http://weblogs.asp.net/jeff/archive/2005/07/18/419842.aspx you can get the resource url on server side like

How do I prevent .NET 4.7.1 libraries from copying the facade dlls to the bin folder?

北城以北 提交于 2020-02-02 02:43:12
问题 I'm certain there's probably a bunch of things going on here that I don't understand well enough, so forgive me if this is a stupid question or if there's obvious details missing. I have a Visual Studio 2015 solution that I've upgraded from .NET 4.5.1 to .NET 4.7.1. The solution consists of a website (not web app) project, and several libraries. The libraries don't really have any dependencies (except eachother) and while they are targeting .NET 4.7.1, they don't use, need, or reference

Understanding IlMerge - how to pack an executable with all it's associated dll's

懵懂的女人 提交于 2020-02-01 09:26:25
问题 I know I'm not the first person to ask this question on Stack Overflow and I'm sure I won't be the last. But, after spending hours researching how to do this and then physically trying to do it, I'm near ready to give up. I have a .NET Framework 4, C#, WinForms application that builds to an executable. I rely on many many many dlls. The dlls fall into multiple categories. Libraries I have written with no dependencies of their own Libraries I have written with dependencies on other libraries I

Understanding IlMerge - how to pack an executable with all it's associated dll's

老子叫甜甜 提交于 2020-02-01 09:26:18
问题 I know I'm not the first person to ask this question on Stack Overflow and I'm sure I won't be the last. But, after spending hours researching how to do this and then physically trying to do it, I'm near ready to give up. I have a .NET Framework 4, C#, WinForms application that builds to an executable. I rely on many many many dlls. The dlls fall into multiple categories. Libraries I have written with no dependencies of their own Libraries I have written with dependencies on other libraries I

Microsoft VisualStudio TestTools UITest dll

有些话、适合烂在心里 提交于 2020-02-01 03:47:06
问题 I need to find Microsoft.VisualStudio.TestTools.UITest.Common.dll Microsoft.VisualStudio.TestTools.UITest.Extension.dll Microsoft.VisualStudio.TestTools.UITest.Extension.Firefox.dll Microsoft.VisualStudio.TestTools.UITest.Extension.Silverlight.dll Microsoft.VisualStudio.TestTools.UITesting.dll Microsoft.VisualStudio.QualityTools.CodedUITestFramework.dll Where are these dll located so I can reference it on my project and i am using visual studio 2010 professional. 回答1: For Visual Studio 2013,