QuestionsWebApp is a .Net web application that allows users to test their knowledge of world geography by identifying countries and their capitals.
- dotnet-sdk-8.0
-
Clone the repository:
git clone https://github.com/Eclipse91/QuestionsWebAppDotNet.git
-
Navigate to the project directory:
cd QuestionsWebAppDotNet
-
Restore Dependencies Run this command inside your project folder:
dotnet restore
This will download missing NuGet packages.
- Build the Project To compile your project, run:
dotnet build
- Run the Project To execute the program:
dotnet run
First, you need to install the .NET SDK for Linux. Open a terminal and install it based on your distribution:
-
Ubuntu/Debian-based:
wget https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb sudo dpkg -i packages-microsoft-prod.deb sudo apt-get update sudo apt-get install -y dotnet-sdk-8.0
(Replace
8.0
with your project's .NET version if different.) -
Fedora:
sudo dnf install dotnet-sdk-8.0
-
Arch Linux:
sudo pacman -S dotnet-sdk
To verify installation, run:
dotnet --version
This project is licensed under the GNU GENERAL PUBLIC LICENSE - see the LICENSE file for details.
Feel free to contribute or report issues! This README provides a clearer structure, concise information, and instructions for setting up and running the PasswordGeneratorApp. Adjust the content as needed for your project.