-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Restore wargs command-line argument handling for "-f" and "--from-code". - Add MakeRelease.bat script to make Release ZIP files. - Add Arm64 to release binaries.
- Loading branch information
Doug Cook (WINDOWS)
committed
Jun 19, 2022
1 parent
9418db3
commit 3cc9b58
Showing
8 changed files
with
280 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
*.suo | ||
*.user | ||
[Oo]bjArm64/ | ||
[Oo]bjx64/ | ||
[Oo]bjWin32/ | ||
Release/ | ||
.vs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
rd /s /q %~dp0objWin32 %~dp0objX64 %~dp0objArm64 %~dp0Release | ||
mkdir %~dp0Release | ||
msbuild %~dp0TextTools.sln -t:Rebuild -p:Configuration=Release;Platform=x86 && zip -j %~dp0Release\TextUtils-X86-32.zip %~dp0objWin32\Release\*.exe | ||
msbuild %~dp0TextTools.sln -t:Rebuild -p:Configuration=Release;Platform=x64 && zip -j %~dp0Release\TextUtils-X86-64.zip %~dp0objX64\Release\*.exe | ||
msbuild %~dp0TextTools.sln -t:Rebuild -p:Configuration=Release;Platform=arm64 && zip -j %~dp0Release\TextUtils-ARM-64.zip %~dp0objArm64\Release\*.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.