Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/persteenolsen/dotnet-8-helloworld-api
A Hello World Web App with .NET 8
https://github.com/persteenolsen/dotnet-8-helloworld-api
dotnet
Last synced: 29 days ago
JSON representation
A Hello World Web App with .NET 8
- Host: GitHub
- URL: https://github.com/persteenolsen/dotnet-8-helloworld-api
- Owner: persteenolsen
- Created: 2024-03-18T13:28:04.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-19T17:09:56.000Z (10 months ago)
- Last Synced: 2024-11-07T09:46:28.063Z (3 months ago)
- Topics: dotnet
- Language: C#
- Homepage: https://dotnet.helloworld.api.persteenolsen.com
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotnet-8-hello-world
A Hello World Web API created by .NET 8.0
# Create a global json
dotnet new globaljson --sdk-version 8.0.203 --force
# Functionality of the Web App
- Just a Hello World Web API
# Tech used for creating the Web App
- A .NET 8 Web API
- A traditional Webhotel for hosting
- VS Code# Development
dotnet run
# Production
Create a self contained build for production at the remote server / traditionel web hotel
dotnet publish helloworld.csproj --configuration Release --runtime win-x86 --self-contained
Upload the build to remote server
At my remote servers the web.config needs to be without the folowing:
hostingModel="inprocess"