Follow these steps to run the program:
Check Requirements: Ensure all necessary extensions and packages are installed.
Open the Terminal: Navigate to the project folder and open an integrated terminal in the same directory as Program.cs.
Build the Project: Run dotnet build in the terminal to compile the project and check for errors.
Run the Program: Execute dotnet run to start the application.
Make sure all dependencies are correctly installed before running the program.
Repository | Description |
---|---|
Software-construction-process-and-tools |
Updated version of the original warehouse project. |
CargoHub (original Python code) |
First version of the code we had to refactor. See the original code here. |
CargoHub (python sourch code new zip) |
This is the zip sourch code which was available 27-11-2024. See the original code here. |
Extension/Package | Installation Command |
---|---|
SQLite Viewer |
Extension for viewing SQLite databases in your editor. |
xunit |
dotnet add package xunit |
xunit.runner.visualstudio |
dotnet add package xunit.runner.visualstudio |
Microsoft.NET.Test.Sdk |
dotnet add package Microsoft.NET.Test.Sdk |
System.Net.Http.Json |
dotnet add package System.Net.Http.Json |
Moq |
dotnet add package Moq |
Be sure to have the above packages and extensions installed to ensure full functionality of the project. For testing purposes, xUnit and related testing tools are required.