c# - How to disable mscorlib.dll from within visual studio 2013? -
c# - How to disable mscorlib.dll from within visual studio 2013? -
i trying utilize custom standard library in visual studio 2013 , can't seem figure out. have no problems compiling on command line using /nostdlib although able take advantage of intellisense in ide. have removed references except custom corelib , getting conflicting code errors due having 2 variations of mscorlib.
the vs documentation says:
to set compiler alternative in visual studio development environment open properties page project. click build properties page. click advanced button. modify not reference mscorlib.dll property.
although not seem case, alternative not exist. know how can disable mscorlib.dll in vs2013?
this old question, but, indeed - while ui alternative has disappeared (or moved) , documentation remains misleading day, can still replicate effect adding <nostdlib>true</nostdlib>
.csproj near other options found in advanced settings:
<project toolsversion="12.0" defaulttargets="build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <propertygroup> ... <targetframeworkversion>v4.0</targetframeworkversion> <filealignment>512</filealignment> <nostdlib>true</nostdlib> <targetframeworkprofile /> </propertygroup> ... </project>
c# visual-studio-2013
Comments
Post a Comment