Click here to Skip to main content
15,888,351 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
when i try to debug my project i got this error:

Error	1	The command "copy D:\Projeler 04-01-2016\ScaleSuite\\ScaleImportExtension-Real\bin\debug\ScaleCustomDataTypes.dll D:\Projeler 04-01-2016\ScaleSuite\ScaleSuite\bin\Debug\\Resources\Binaries\ScaleCustomDataTypes.dll
copy D:\Projeler 04-01-2016\ScaleSuite\\ScaleImportExtension-Real\bin\debug\ScaleImportExtensionInterface.dll D:\Projeler 04-01-2016\ScaleSuite\ScaleSuite\bin\Debug\\Resources\Binaries\ScaleImportExtensionInterface.dll
copy D:\Projeler 04-01-2016\ScaleSuite\\ScaleExportExtension-RealToledo\bin\debug\ScaleExportExtensionInterface.dll D:\Projeler 04-01-2016\ScaleSuite\ScaleSuite\bin\Debug\\Resources\Binaries\ScaleExportExtensionInterface.dll
copy D:\Projeler 04-01-2016\ScaleSuite\\ScaleImportExtension-Real\bin\debug\ScaleImportExtension-Real.dll D:\Projeler 04-01-2016\ScaleSuite\ScaleSuite\bin\Debug\\Resources\Extensions\ScaleImportExtension-Real.dll
copy D:\Projeler 04-01-2016\ScaleSuite\\ScaleExportExtension-RealToledo\bin\debug\ScaleExportExtension-RealToledo.dll D:\Projeler 04-01-2016\ScaleSuite\ScaleSuite\bin\Debug\\Resources\Extensions\ScaleExportExtension-RealToledo.dll" exited with code 1.	ScaleSuite


What I have tried:

Copying the all the extension dll to debug folder but its not help
Posted
Updated 5-Aug-16 21:24pm
v2
Comments
BillWoodruff 5-Aug-16 6:21am    
Describe clearly what your code is doing when it produces this error. Post the code that produces the error. We can't read your mind.
Member 10525430 5-Aug-16 8:01am    
my code is use some extension c# class dll
and this problem is not about one code its about all project.

1 solution

That looks like a series of copy commands executed as part of the post-build command line.
Make sure that both the source path and the destination path are correct. A common problem with copy commands is if the destination or source folders do not exist.

You can edit the post-build commands by right-clicking on the project then selecting "Properties". In the window that opens, select "Build Events" from the list on the left. Under the label "Post-build event command line" is a text box with all the post-build commands.
If the paths look correct and you are still having issues then you can track down which command is failing by removing all of them then add them back one at a time until you find the failing one. Then fix the one that is failing. That can be easier than trying to look at everything at once.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900