ImLewel / lab2_SDMT

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My linked list implementation in C#

How to build and run:

Windows:

  • winget install Microsoft.DotNet.Runtime.6 in cmd or download here
  • Clone this repository git clone https://github.com/ImLewel/lab2_SDMT.git
  • Open cmd in lab2_SDMT\LinkedList
  • Run or build with dotnet run dotnet build respectively
  • If you want to run tests, in lab2_SDMT\LinkedListTesting run dotnet test

Linux:

  • Install .NET runtime (example for Debian, for other distros check here)
    wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
    sudo dpkg -i packages-microsoft-prod.deb
    rm packages-microsoft-prod.deb
    sudo apt-get update && \ sudo apt-get install -y dotnet-runtime-6.0
  • Clone this repository git clone https://github.com/ImLewel/lab2_SDMT.git
  • Open terminal in lab2_SDMT/LinkedList
  • Run or build with dotnet run dotnet build respectively
  • If you want to run tests, in lab2_SDMT/LinkedListTesting run dotnet test

Note:

  • Some commits may contain information that more than one methods are included in this commit, not in separate ones (forgot to commit changes and added some new functionality), however in such commits I`ve added comment about it in the description of commit or in the bottom after changes.

Commit where tests dropped link

About

License:MIT License


Languages

Language:C# 100.0%