When right click on an ASP.NET Web Application and select “Build Deployment Package”, I don’t want it to create a .zip with the full path. I want the output to be the same no matter where it is built. Is this possible.
For example, if I create an Empty Web Application from the template, it will creates this zip
C:\Users\taggartc\tmp\EmptyWebApp\obj\Debug\Package\EmptyWebApp.zip
The zip has this structure:
Content\c_C\users\taggartc\tmp\EmptyWebApp\obj\Debug\Package\PackageTmp\bin\EmptyWebApp.dll
Is there any way to get rid of the path and have it be something like:
Content\bin\EmptyWebApp.dll
There is no available option to use a relative path from within the zip archive.