-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from tebexio/1.0.0-beta
1.0.0 beta
- Loading branch information
Showing
13 changed files
with
68 additions
and
20 deletions.
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 |
---|---|---|
|
@@ -5,6 +5,9 @@ | |
|
||
.DS_STORE | ||
.idea/ | ||
deploy/linux/ | ||
deploy/windows/ | ||
deploy/osx/ | ||
|
||
# User-specific files | ||
*.rsuser | ||
|
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
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,18 @@ | ||
#!/bin/bash | ||
|
||
rm -rf ./Tebex-RCON/bin | ||
rm -rf ./Tebex-RCON/obj | ||
rm -rf ./deploy/windows | ||
rm -rf ./deploy/linux | ||
|
||
dotnet publish -c Release -r win-x64 --self-contained true -p:PublishSingleFile=false . | ||
dotnet publish -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=false . | ||
dotnet publish -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=false . | ||
|
||
mkdir -p ./deploy/windows | ||
mkdir -p ./deploy/linux | ||
mkdir -p ./deploy/osx | ||
|
||
cp ./Tebex-RCON/bin/Release/net7.0/win-x64/publish/* ./deploy/windows/ | ||
cp ./Tebex-RCON/bin/Release/net7.0/linux-x64/publish/* ./deploy/linux/ | ||
cp ./Tebex-RCON/bin/Release/net7.0/osx-x64/publish/* ./deploy/osx/ |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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,7 @@ | ||
#!/bin/bash | ||
|
||
systemctl stop Tebex-RCONAdapter | ||
sleep 1 | ||
systemctl status Tebex-RCONAdapter | ||
|
||
echo "Stopped RCON Adapter." |
This file was deleted.
Oops, something went wrong.