Trong bài viết này, mình sẽ hướng dẫn các bạn tạo Project .NET bằng Visual Studio Code: 1 project và multi-project.
Visual Studio Code là gì?
Visual Studio Code (được biết đến với cái tên VS Code) là một trình soạn thảo văn bản mã nguồn mở miễn phí của Microsoft. VS Code có sẵn cho Windows, Linux và macOS.
Để hỗ trợ Debug và run C# project, bạn cần cài đặt các extension sau:
- C# (C# for Visual Studio Code (powered by OmniSharp)
Tạo 1 project console đơn giản
Mở Terminal, gõ câu lệnh sau để tạo Project Sample với folder Sample:
dotnet new console -o sample
cd .\sample\
code .
Sau đó bạn cần tạo folder .vscode để chứa settings về debug và task configuration
Bấm Ctrl+Shift+P, gõ .NET: Generate Assets for Build and DebugTạo solution với nhiều Project
dotnet new sln -o MySolution
cd .\MySolution\
mkdir src
dotnet new console -o src/MyProject
dotnet sln add src/MyProject/MyProject.csproj
dotnet new classlib -o src/MyLibraries
dotnet sln add src/MyProject/MyLibraries.csproj
cd .\src\MyLibraries\
dotnet add reference ../MyProject/MyProject.csproj
Nhận xét
Đăng nhận xét