From 782bef1ba70afc0ef1ec072d7ab72912ff1343fd Mon Sep 17 00:00:00 2001 From: Next Turn <45985406+NextTurn@users.noreply.github.com> Date: Fri, 28 Aug 2020 18:55:51 +0800 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 084507b..68beca1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,16 +11,20 @@ You can open *src\WinSW.sln* and then build and run tests from within Visual Studio. -## Develop with .NET SDK +## Develop with .NET CLI ### Build ```console -dotnet build src\winsw.sln +dotnet build src\WinSW.sln ``` ### Test ```console -dotnet test src\Test\winswTests\winswTests.csproj +dotnet test src\WinSW.sln ``` + +## See also + +[How to: Debug Windows Service Applications](https://docs.microsoft.com/dotnet/framework/windows-services/how-to-debug-windows-service-applications)