From a3ff1795f5268dd47ab4314088131e4314534556 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Tue, 11 Sep 2018 12:28:28 -0400 Subject: [PATCH] dotnet notes --- dotnet_core.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dotnet_core.md b/dotnet_core.md index 24f0f92..738e43b 100644 --- a/dotnet_core.md +++ b/dotnet_core.md @@ -1 +1,9 @@ -dotnet new console -n "name of directory or project" \ No newline at end of file +dotnet new console -n "name of directory or project" + +dotnet build + +create exe targeting a runtime: create an executable if not already exists and build dll in bin/Release/win10-x64 +-------------------------------------------- +dotnet publish -c Release -r win10-x64 + +dotnet publish -c Release -f netcoreapp2.1 \ No newline at end of file