B
Berryl Hesh
I have a folder of shared library binaries in one place for the primary
solution I am working on. I often make a quick & dirty separate solution
when I want to work through a particular new concept - I'm doing this now to
get a handle on NHibernate.
Another thing I need to get a handle on is build blood & guts. A recommended
practice for incorporating some sqlce dll's into a NHibernate project is to
use a post build event, with the a syntax being
copy $(ProjectDir)..\..\SharedLibs\sqlce*.dll $(ProjectDir)$(OutDir)
Because I want to use a different library folder, I used the command prompt
to verify that it's relative location was (3) levels up and then two levels
in, or
cd ..\..\..\Smack\Lib ( I can DIR all of the dll's from here)
so I changed the post build command line to
copy $(ProjectDir)..\..\..\Smack\Lib\sqlce*.dll $(ProjectDir)$(OutDir)
This got me the error below. Any one have any insights to what I'm doing
wrong? Are there any utilities that hellp verify command syntax?
Thanks,
Berryl
Error 2 The command "copy C:\Documents and Settings\BH\My Documents\Visual
Studio
2008\Projects\Learning\Lab\NHibernateDev\..\..\..\Smack\Lib\sqlce*.dll
C:\Documents and Settings\BH\My Documents\Visual Studio
2008\Projects\Learning\Lab\NHibernateDev\bin\Debug\" exited with code 1.
NHibernateDev
solution I am working on. I often make a quick & dirty separate solution
when I want to work through a particular new concept - I'm doing this now to
get a handle on NHibernate.
Another thing I need to get a handle on is build blood & guts. A recommended
practice for incorporating some sqlce dll's into a NHibernate project is to
use a post build event, with the a syntax being
copy $(ProjectDir)..\..\SharedLibs\sqlce*.dll $(ProjectDir)$(OutDir)
Because I want to use a different library folder, I used the command prompt
to verify that it's relative location was (3) levels up and then two levels
in, or
cd ..\..\..\Smack\Lib ( I can DIR all of the dll's from here)
so I changed the post build command line to
copy $(ProjectDir)..\..\..\Smack\Lib\sqlce*.dll $(ProjectDir)$(OutDir)
This got me the error below. Any one have any insights to what I'm doing
wrong? Are there any utilities that hellp verify command syntax?
Thanks,
Berryl
Error 2 The command "copy C:\Documents and Settings\BH\My Documents\Visual
Studio
2008\Projects\Learning\Lab\NHibernateDev\..\..\..\Smack\Lib\sqlce*.dll
C:\Documents and Settings\BH\My Documents\Visual Studio
2008\Projects\Learning\Lab\NHibernateDev\bin\Debug\" exited with code 1.
NHibernateDev