A web application built with ASP.NET that calculates Fibonacci numbers. This project demonstrates a simple web service implementation using .NET Framework.
This web application provides an API endpoint to calculate Fibonacci numbers. It's built using:
- ASP.NET Framework
- C#
- Web API configuration
FibonacciWebApp/
├── FibonacciWebApp.csproj
├── Controllers/
│ └── FibonacciController.cs
└── README.md
- Visual Studio 2019 or later
- .NET Framework 4.5 or later
- IIS Express (comes with Visual Studio) or IIS
- Clone the repository:
git clone https://github.com/Jimmyu2foru18/FibonacciWebApp.git
-
Open the solution file
FibonacciWebApp.sln
in Visual Studio -
Restore NuGet packages:
- Right-click on the solution in Solution Explorer
- Select "Restore NuGet Packages"
-
Build the solution:
- Press
Ctrl + Shift + B
or - Select
Build > Build Solution
from the menu
- Press
- In Visual Studio, press
F5
or click the "Start" button - The application will launch in your default web browser
- IIS Express will host the application locally
The application includes different configuration files for various environments:
Web.config
: Main configuration fileWeb.Debug.config
: Debug environment settingsWeb.Release.config
: Release environment settings