I have a C#
MVC
site hosted on Azure Websites
, and I need to include a:
unsafe {
fixed (float* f = myFloatArray) {
}
}
block of code. This works great on my development machine locally (when running through the debugger). I have - of course - enabled the Allows unsafe code
checkbox in my project settings.
My issue is that when I Publish the project to Azure Websites using the right-click-project-Publish approach, the build tells me I need to compile with /unsafe
(which is what I thought I was doing by checking the Allow unsafe code
checkbox in my project settings).
How can I get my unsafe
code to publish to Azure Websites
? What could I be doing incorrectly here?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…