Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rasheedaboud/fsharp-azure-functions-isolated
F# Azure Functions Dotnet 8 Isolated
https://github.com/rasheedaboud/fsharp-azure-functions-isolated
dotnet fsharp functions isolated
Last synced: about 2 months ago
JSON representation
F# Azure Functions Dotnet 8 Isolated
- Host: GitHub
- URL: https://github.com/rasheedaboud/fsharp-azure-functions-isolated
- Owner: rasheedaboud
- Created: 2021-11-21T22:09:04.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-03T21:29:03.000Z (9 months ago)
- Last Synced: 2024-05-03T22:33:22.486Z (9 months ago)
- Topics: dotnet, fsharp, functions, isolated
- Language: F#
- Homepage:
- Size: 15.6 KB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example Azure Function using F# on .NET 8
This repo shows a minimal example of how to write an Azure function using F# and run it on .NET 8 isolated mode.
It should be as simple as cloning the repo and running the function app.
Built using Microsoft Visual Studio Community 2022 (64-bit) Version 17.9 and Dotnet 8 version 8.0.204.
### ASP.NET Core Integration
The Azure Functions team added the ability to integrate function with asp.net core HttpRequest and response types. I personally prefer this approach to using the HttpRequestData.
Head over [here]("https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide?tabs=windows#aspnet-core-integration") to learn more about how to enable ASP.NET Core integration for HTTP requests in your own projects.