Skip to content

Latest commit

 

History

20 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

F# Development Toolkit

Linux Windows YouTube Reddit

GitHub   YouTube   My Awesome Lists

mindmap
  root((F# Development <br/> Toolkit))

    Language
      F#
      .NET
      FSI

    IDE
      Visual Studio
      VS Code
      Rider

    Build
      dotnet CLI
      NuGet
      FAKE

    Testing
      Expecto
      xUnit
      FsCheck

    Data Science
      FSharp.Data
      Deedle
      ML.NET

    Web
      ASP.NET Core
      Giraffe
      Saturn
      Fable

    Cloud
      Docker
      Azure
      GitHub Actions
Loading

📖 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 F# -o HelloWorld && \
cd ./HelloWorld && \
dotnet run

My Awesome Lists

You can access the my other awesome lists here

Contributing

Contributions of any kind welcome, just follow the guidelines!

Contributors

Thanks goes to these contributors!

🔼 Back to top