c++ cli - Visual studio 2010 , Error MSB3073 -
i got following error.
error msb3073: command "copy app.config “d:\projects\sdk.dll.config” :vcend" exited code 1. c:\program files\msbuild\microsoft.cpp\v4.0\microsoft.cppcommon.targets 113
i did not understand error is.
on clicking error message, navigated [microsoft.cppcommon.targets]
file, following code.
<target name="postbuildevent" condition="'$(postbuildeventuseinbuild)'!='false'"> <message text="description: %(postbuildevent.message)" condition="'%(postbuildevent.message)' != '' , '%(postbuildevent.command)' != ''"/> <exec command="%(postbuildevent.command)$(buildsuffix)" condition="'%(postbuildevent.command)' != ''"/> </target>
what error , how can fix it?
there post-build command trying execute copy failing. cause user defined command in vcproj file failing. check projects block in post-build task. source of error
Comments
Post a Comment