Skip to content

cybersecurity-dev/csharp-toolkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

11 Commits
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

C# Development Toolkit

Linux Windows YouTube Reddit

๐Ÿ“– Contents

Install Steps

For Debian, Ubuntu, Linux Mint
wget https://packages.microsoft.com/config/debian/12/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-sdk-9.0 
sudo dotnet workload update && \
dotnet --version
For RHEL, Fedora, AlmaLinux
sudo dnf update
For Arch, Manjaro, EndeavourOS
sudo pacman -Syu

HelloWorld Project

dotnet new console -lang C# -o HelloWorld && \
cd ./HelloWorld && \
dotnet run

My Awesome Lists

You can access the my awesome lists here

Contributing

Contributions of any kind welcome, just follow the guidelines!

Contributors

Thanks goes to these contributors!

๐Ÿ”ผ Back to top