Tutorial by Examples

There is no such things as .sln and .proj files. Instead of them folders are being used in Visual Studio Code. Each project folder should have a seperate project.json file. /MyProject.Core SourceFile.cs project.json /MyProject.Web /Controllers /Views project.json To refe...
It is very common to group projects, for example, place test projects under the /test folder and source projects under the /src folder. Add global.json file and make similar structure: global.json /src/ /MyProject.Core/ SourceFile.cs project.json /MyProject.Web/ ...

Page 1 of 1