diff --git a/README.md b/README.md index cea77427..c7687ed8 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [发行版](https://gitee.com/sourcegit/SourceGit/releases/) 1. `SourceGit.exe`为不包含`.NET 5.0`运行时的可执行文件。如果本机已有`.NET 5.0`可下载使用 -2. `SourceGit.zip`为`self-contained`包。包含了`.NET 5.0`运行时。 +2. `SourceGit.tar.gz`为`self-contained`包。包含了`.NET 5.0`运行时。 ## 预览 diff --git a/build.bat b/build.bat index f0ab4714..0b2348bf 100644 --- a/build.bat +++ b/build.bat @@ -5,4 +5,7 @@ cd src dotnet publish -c Release -r win-x64 -o ..\publish\SourceGit\ -p:PublishSingleFile=true --self-contained=true dotnet publish -c Release -r win-x64 -o ..\publish\ -p:PublishSingleFile=true --self-contained=false +tar -C ..\publish -czvf ..\publish\SourceGit.tar.gz SourceGit\*.* +rmdir /S /Q ..\publish\SourceGit + pause \ No newline at end of file diff --git a/src/App.config b/src/App.config deleted file mode 100644 index 941cc663..00000000 --- a/src/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/SourceGit.csproj b/src/SourceGit.csproj index 43e55479..4c5c6b87 100644 --- a/src/SourceGit.csproj +++ b/src/SourceGit.csproj @@ -16,4 +16,8 @@ Public true + + none + false + \ No newline at end of file