I\'m trying to publish a web application (with VS2012 Web) in which I need to run a vb script.
That script currently doesn\'t run correctly probably because of the l
It seems when you publish it ignores the project setting of unsafe, so you need to manually open your .CSPROJ file and include:
... true
That solved it for me.
Googled this issue but could not find anything. Checked the *.targets files for "unsafe" which led me to the "AllowUnsafeBlocks" tag.