Compile Solution without DLL's Visual Studio Managed C++ -


i'm new @ c++ managed , visual studio keep in mind. ive programmed application makes easy users bind keys in counterstrike, found here: https://sites.google.com/site/intrepidprojects/

the first error ran friends testing program "msvcr120d.dll missing". lead me finding have set runtime library multi-threaded (/mtd), if don't want users download visual studio c++ dll's . when choose option given error /mtd , /clr incompatible. turned common runtime support no support. of namespaces invalid such 'system', 'collections', etc.

my question how produce stand alone application without needing dll's? every solution have come across leads me more errors not understand. again, language using c++/cli. sorry if not using proper lingo communicate errors teaching on own.i aware question has been asked many times before, answers not leading me solutions.

my question how produce stand alone application without needing dll's? basically: don't. have them install crt runtime - the'll need anyway sooner or later you're not 1 writing programs targetting toolset (btw, tagged question vs2012 dlls vs2013?). alternative needed dlls (msvcr120.dll, msvcp120.dll etc, use dependency walker) on filesystem , put them in same directory executable, works because of how path searched dlls. it's bit messy.

furtermore missing msvcr120d means building project debug configuration (that d stands for), should build release configuration when shipping users runtime installer installs release versions.


Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -