An open API service indexing awesome lists of open source software.

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#

Awesome Lists containing this project

README

          

# String Utility

This project is a test of use Visual Studio Code with multiple projects and solution!

![travis-build](https://travis-ci.com/ScriptsEngineer/StringUtility.svg?branch=master)

## 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