发布 ``` # 发布不依赖框架的,不用单文件发布 dotnet publish "xicheji.csproj" -c Release -o ./release/ -r win-x64 --no-self-contained # 发布不依赖框架的,用单文件发布 dotnet publish "xicheji.csproj" -c Release -o ./release/ -r win-x64 --no-self-contained /p:PublishSingleFile=true ```