Created
May 28, 2023 07:31
-
-
Save pqviet07/d643f3c58d754914d259ae2e7eef171a to your computer and use it in GitHub Desktop.
Express Setup .Net Core App
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet new console -n <YourProjectName> -f net7.0 && \ | |
cd <YourProjectName> && \ | |
dotnet add package Microsoft.Extensions.Configuration.Json && \ | |
dotnet add package Newtonsoft.Json && \ | |
dotnet add package Quartz && \ | |
dotnet add package RestSharp && \ | |
dotnet add package Serilog && \ | |
dotnet add package Serilog.Sinks.Console && \ | |
dotnet add package Serilog.Sinks.File && \ | |
dotnet add package HtmlAgilityPack && \ | |
dotnet add package Leaf.xNet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment