opeliaa
opeliaa

Reputation: 105

How to run a F# app in Windows Azure?

I have a project that requires me to write a library management system in F# and using Windows Azure for the development. I am quite new to Cloud concept and I don't know what to do as a next step. Is there any way to implement it using Web Forms? If you can help me with the steps I have to take, I can study them and learn.

Upvotes: 3

Views: 282

Answers (1)

Mark Seemann
Mark Seemann

Reputation: 233150

Go to http://www.microsoft.com/windowsazure/, read the introduction, download the SDK and in Visual Studio, select to create a new F# project.

The current SDK only supports Worker Roles (background processing) for F#, so no: by default you can't implement Web Forms with F#. You can, however, create a Web Forms project in either C# or VB.NET as a Humble Object that delegates all work to an F# library.

Upvotes: 2

Related Questions