Custom build step in C# project / VS.NET 2003
Visual Studio
2
Posts
1
Posters
0
Views
1
Watching
-
Hi I need to add a Custom build step in C# web project to copy some files. I there anyway to do this using VS.NET IDE or an addin ?
-
Hi I need to add a Custom build step in C# web project to copy some files. I there anyway to do this using VS.NET IDE or an addin ?
Hi solved it Like this : I Edited the project file using notepad and added this :
PostBuildEvent = "copy $(TargetPath) F:\MyFolder\$(TargetFileName)"
and it works fine. But can anybody tell me why isn't this option available directly from the property pages in the IDE ?