my tweets
- the base class of a class in ruby is...... class. 5 hours ago
- #q107 is playing the b side of abbey road RIGHT NOW (best b-side ever) 5 hours ago
- Agile Tokyo 2010 http://is.gd/dTRp2 7 hours ago
- @xALLIEbabax @clickflickca @Notez that's what were eating! 8 hours ago
- @clickflickca @Notez what you sayin she should be making me dinner ;) LOL #notevenabachelor 8 hours ago
-
RSS Links
Archives
Blogroll
xcopy won’t copy .css files
I use xcopy as part of a build script to copy a bunch of files and directories from a subversion checkout directory to another directory so that I can zip them and upload them to a server.
I have an exclude file that I use to tell xcopy to ignore files like the obj directory and .cs codebehind files. I noticed that none of my .ascx and .css files were being copied?! Turns out the .cs entry in my excludes list was causing those other files that had .cs in the extension not to get copied.
The solution? Add a backslash to the end of the .cs entry so it looks like this:
.cs\
All your other files with .cs in the extension will now get copied.
Hope this helped someone!