https://github.com/scriptsengineer/stringutility
Visual Studio Code Test Solution C#
https://github.com/scriptsengineer/stringutility
Last synced: about 1 year ago
JSON representation
Visual Studio Code Test Solution C#
- Host: GitHub
- URL: https://github.com/scriptsengineer/stringutility
- Owner: scriptsengineer
- Created: 2019-06-04T22:39:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-04T23:51:11.000Z (about 7 years ago)
- Last Synced: 2025-02-13T22:49:44.093Z (over 1 year ago)
- Language: C#
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# String Utility
This project is a test of use Visual Studio Code with multiple projects and solution!

## Learn Commands!
- Create new Solution
dotnet new sln
- List new Projects types
dotnet new -l
- Create project type classlib with name String Utility
dotnet new classlib -o StringUtility
- Add reference project with path
dotnet add reference "path.csproj"
- Run project with path
dotnet run "path.csproj"
- Build solution
dotnet build