Visual Studio 2015 & Autocad 2015
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
So I recently bought Visual Studio 2015 to do some development for ObjectArx.net. However I feel I am regretting my decission because all the wizards and everything else is setup for vs2012 not for vs2015.
I did recently find this thread VS2012 - Update #5 and there are now wizards for vs2015 & autocad 2016 but not for 2015.
I have tried to work through the guides (Step01 Hello World) without using the wizrads but have recevied a lot of errors and here is how I have worked through most of them.
#1: Received the toolset errors so I had to install vs2012 to have toolset 110.
#2: Linker Output file mismatch. I left the Output File as $(OutDir)$(TargetName)$(TargetExt) and changed the information in General to have a TargetName & Target Extension as mentioned in the guide.
The following errors are things I can't seem to work past.
#3: Can't find atls.lib file so I added an additional library to reference the location of that file.
Which gives me an error of LNK1104 cannop open file 'atls.lib'
So I looked up online and found if I add the path to the atls.lib to the libraries in the linker that it should work.
I added this path ( locates 'atls.lib' ) C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\atlmfc\lib\
But now I receive this error
LNK1319 1 mismatches detected
but without much description it is hard to work past this.
#4: LNK2038: mismatch detected for 'RuntimeLibrary':value 'MD_DynamicRelease' doesn't match value 'MDd_dynamicDebug' in HellWorld.obj
I can't seem to figure out what to do about this one. I have tried changing the runtime library but I can't seem to get it to work.
Can anyone help me out? Or point me in the direction of so vs2015 information that should help me along my journey?
Here is screen shots of the errors and all my configuration options that I have already setup.
Thanks in advance.