diff --git a/README.md b/README.md
index b1c83bd3..284ed823 100644
--- a/README.md
+++ b/README.md
@@ -43,11 +43,12 @@
## Thanks
+* [Jai](https://gitee.com/abel) 简化工程,由一个project管理多目标平台
* [Jai](https://gitee.com/abel) .NET Framework 4.8 与 .NET 5 平台使用System.Text.Json统一代码
* [Jai](https://gitee.com/abel) 修复SUBMODULE路径不正确的BUG
* [Jai](https://gitee.com/abel) 修复刷新分支时,分支树节点状态未正常恢复的BUG
+* [Jai](https://gitee.com/abel) 启动恢复上次浏览页面功能
+* [Jai](https://gitee.com/abel) 修复不同remote分支结构生成错误的BUG
* [PUMA](https://gitee.com/whgfu) 配置默认User
* [Rwing](https://gitee.com/rwing) GitFlow: add an option to keep branch after finish
* [XiaoLinger](https://gitee.com/LingerNN) 纠正弹出框文本配置方式
-* [Jai](https://gitee.com/abel) 启动恢复上次浏览页面功能
-* [Jai](https://gitee.com/abel) 修复不同remote分支结构生成错误的BUG
diff --git a/build.bat b/build.bat
index f055fd4c..7e745b10 100644
--- a/build.bat
+++ b/build.bat
@@ -5,15 +5,17 @@ rmdir /s /q publish
cd src
rmdir /s /q bin
rmdir /s /q obj
-dotnet publish SourceGit_48.csproj --nologo -c Release -r win-x86 -o ..\publish\net48
+dotnet publish SourceGit.csproj --nologo -c Release -r win-x86 -f net48 -o ..\publish\net48
ilrepack /ndebug /wildcards /out:..\publish\SourceGit.exe ..\publish\net48\SourceGit.exe ..\publish\net48\*.dll
cd ..\publish
-ren SourceGit.exe SourceGit_48.exe
+ren SourceGit.exe SourceGit.net48.exe
rmdir /s /q net48
cd ..\src
rmdir /s /q bin
rmdir /s /q obj
-dotnet publish SourceGit.csproj --nologo -c Release -r win-x86 -p:PublishSingleFile=true --no-self-contained -o ..\publish
+dotnet publish SourceGit.csproj --nologo -c Release -r win-x86 -f net5.0-windows -p:PublishSingleFile=true --no-self-contained -o ..\publish
+cd ..\publish
+ren SourceGit.exe SourceGit.net50.exe
cd ../
\ No newline at end of file
diff --git a/src/SourceGit.csproj b/src/SourceGit.csproj
index 182711ac..26ada0df 100644
--- a/src/SourceGit.csproj
+++ b/src/SourceGit.csproj
@@ -1,6 +1,6 @@
- net5.0-windows
+ net5.0-windows;net48
WinExe
true
App.ico
@@ -17,4 +17,7 @@
true
none
+
+
+
\ No newline at end of file
diff --git a/src/SourceGit_48.csproj b/src/SourceGit_48.csproj
deleted file mode 100644
index 18a4497b..00000000
--- a/src/SourceGit_48.csproj
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
- net48
- WinExe
- true
- App.ico
- sourcegit
- OpenSource GIT client for Windows
- Copyright © sourcegit 2020. All rights reserved.
- App.manifest
- 4.8
- MIT
- SourceGit.App
- https://gitee.com/sourcegit/SourceGit.git
- https://gitee.com/sourcegit/SourceGit.git
- Public
- true
- none
- SourceGit
- SourceGit
-
-
-
-
-
\ No newline at end of file