dotnet:: 실행파일 만들기 c# publish option // -r RID, net8, singlefile
dotnet new consoledotnet build --output ./build_outputdotnet ./build_output/my_app.dll dotnet build -c Releasedotnet build -p:Version=1.2.3.4 # single file exe with all dependanciesdotnet publish -c Release -r win-x64 --self-contained true /p:publishsinglefile=true# framework-dependent executabledotnet publish -c Releasedotnet publish -c Release -r --self-contained false# self-contained dotnet ..