The .NET C# workspace setup for Visual Studio Code to solve problems from online judge platforms like Codeforces, AtCoder, Baekjoon Online Judge, etc.
It is intended to provide useful configurations and snippets for problem solving in C#.
Since .NET cannot compile or run single *.cs file (there are workarounds but not suitable for PS), it is annoying to build with multiple source files in the same workspace directory. With this workspace setup, you can easily disable/archive source files and compiling a single source file.
Instructions will be added later.
Put source files(*.cs) under ./Disabled.
The files under ./Disabled will not be recognized by the project(CSPS.csproj).
Put source files(*.cs) under ./ProblemCodes.
The files under ./ProblemCodes will not be recognized by the project(CSPS.csproj).
- C# for basic language support for C#, such as IntelliSense.
- Competitive Programming Helper for running test cases easily.