4 DeathSocket Project Breakdown
Craig Oates edited this page 4 years ago

This section focuses on the source code within the "DeathSocket" project. It is the main project within the solution/repository.

deathsocket selected

This project is a .Net Standard 2.0 library, written in F#. Within the project you will see eight files, including "DeathSocket.fsproj". This "fsproj" file is a typical file found in most (if not all) F# projects created with Visual Studio. For the most part, you should rarely need to touch this. The other seven files build out the project and are where you will do most of your work. With that in mind, I should point out "Scratchpad.fsx" operates in a different manner to the other six. That is because it is a script file and not part of the binary/DLL when you compile it. So, you can avoid using working with this file too if you want.

deathsocket file structure