-
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.
--- We've added the launcher for BassBoom for Windows platforms. --- Type: add Breaking: False Doc Required: False Backport Required: False Part: 1/1
- Loading branch information
Showing
3 changed files
with
33 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
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,24 @@ | ||
@echo off | ||
|
||
REM BassBoom Copyright (C) 2022-2024 Aptivi | ||
REM | ||
REM This file is part of BassBoom | ||
REM | ||
REM BassBoom is free software: you can redistribute it and/or modify | ||
REM it under the terms of the GNU General Public License as published by | ||
REM the Free Software Foundation, either version 3 of the License, or | ||
REM (at your option) any later version. | ||
REM | ||
REM BassBoom is distributed in the hope that it will be useful, | ||
REM but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
REM GNU General Public License for more details. | ||
REM | ||
REM You should have received a copy of the GNU General Public License | ||
REM along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
REM This script runs BassBoom. This is a shortcut for running BassBoom | ||
REM so that you don't have to write the full name of the executable. | ||
|
||
set ROOTPATH=%~dp0 | ||
dotnet "%ROOTPATH%BassBoom.Cli.dll" %* |