Is it possible to run Native C ++ code in Windows Azure?

I have an application written in native C ++ that involves heavy computing. In fact, I am only interested in the result of the calculation, i.e. It can be executed without a GUI or controlled by some .Net service / application.

Can I run it on Microsoft Cloud? How can i do this?

+6
c ++ cloud azure unmanaged
source share
1 answer

If you mean things like P / Invoke, this is definitely possible!

You need to configure your employee role to enableNativeCodeExecution , but to be honest, right?;)

You can read it here .

+5
source share

All Articles