Include / exclude files when creating an Azure package

I am creating an azure package using Visual Studio (right click on the azure project → package). I would like to include and exclude some files in a package like this: How do I include additional files using VS2010 deployment packages? What do I need to do to get this working for the azure package function?

+5
source share
1 answer

The Windows Azure Deployment File (CSPKG) is different from the regular VS publishing package, although the CSPKG file is actually a zip file. You can rename CSPKG to zip and see what's inside, but you cannot add or delete files this way, since your package will be corrupted.

CSPKG - VS, , "copy local true", . , CSPKG, .

+1

All Articles