Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1a7c177

Browse files
reverse rename #203 , #GITBUILD
1 parent dfcdc3b commit 1a7c177

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+37
-37
lines changed

‎.github/workflows/main.yml‎

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
# Restore NuGet packages
5353
- name: Restore NuGet packages
5454
if: env.build_trigger == 'true'
55-
run: nuget restore ULauncherPro.sln
55+
run: nuget restore UnityLauncherPro.sln
5656

5757
# Build the binary
5858
- name: Build Binary
@@ -67,15 +67,15 @@ jobs:
6767
run: call .\ArtifactBuild.cmd
6868

6969
# Check that output exists
70-
- name: Validate ULauncherPro.exe exists
70+
- name: Validate UnityLauncherPro.exe exists
7171
if: env.build_trigger == 'true'
7272
shell: cmd
7373
run: |
74-
if not exist "ULauncherPro\bin\Release\ULauncherPro.exe" (
75-
echo ERROR: ULauncherPro.exe not found.
74+
if not exist "UnityLauncherPro\bin\Release\UnityLauncherPro.exe" (
75+
echo ERROR: UnityLauncherPro.exe not found.
7676
exit /b 1
7777
)
78-
echo Found ULauncherPro.exe
78+
echo Found UnityLauncherPro.exe
7979
8080
# 1) Compute a wrapped major.minor.build from the run number
8181
- name: Compute installer version
@@ -98,7 +98,7 @@ jobs:
9898
if: env.build_trigger == 'true'
9999
shell: pwsh
100100
run: |
101-
$proj = 'ULauncherProInstaller\ULauncherProInstaller.vdproj'
101+
$proj = 'UnityLauncherProInstaller\UnityLauncherProInstaller.vdproj'
102102
$ver = "${{ env.INSTALLER_VER }}" # e.g. 0.0.118
103103
$guid = [Guid]::NewGuid().ToString("B").ToUpper() # e.g. {E821A3F5-1F84-4A4B-BE9D-115D93E9E6F0}
104104
@@ -128,7 +128,7 @@ jobs:
128128
if: env.build_trigger == 'true'
129129
shell: pwsh
130130
run: |
131-
$proj = 'ULauncherProInstaller\ULauncherProInstaller.vdproj'
131+
$proj = 'UnityLauncherProInstaller\UnityLauncherProInstaller.vdproj'
132132
Write-Host "=== BEGIN .vdproj CONTENT ==="
133133
Get-Content $proj
134134
Write-Host "=== END .vdproj CONTENT ==="
@@ -166,11 +166,11 @@ jobs:
166166
echo === Running BuildInstaller.bat ===
167167
call .\BuildInstaller.bat || echo WARNING: BuildInstaller.bat exited with %ERRORLEVEL%, continuing...
168168
echo === Verifying MSI ===
169-
if exist "ULauncherProInstaller\Release\ULauncherPro-Installer.msi" (
170-
echo Success: MSI found at ULauncherProInstaller\Release\ULauncherPro-Installer.msi
169+
if exist "UnityLauncherProInstaller\Release\UnityLauncherPro-Installer.msi" (
170+
echo Success: MSI found at UnityLauncherProInstaller\Release\UnityLauncherPro-Installer.msi
171171
exit /b 0
172172
) else (
173-
echo ERROR: MSI not found in ULauncherProInstaller\Release
173+
echo ERROR: MSI not found in UnityLauncherProInstaller\Release
174174
exit /b 1
175175
)
176176
@@ -228,8 +228,8 @@ jobs:
228228
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
229229
with:
230230
upload_url: ${{ steps.create_release.outputs.upload_url }}
231-
asset_path: ./ULauncherPro.zip
232-
asset_name: ULauncherPro.zip
231+
asset_path: ./UnityLauncherPro.zip
232+
asset_name: UnityLauncherPro.zip
233233
asset_content_type: application/zip
234234

235235
# Upload MSI installer to release
@@ -240,6 +240,6 @@ jobs:
240240
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
241241
with:
242242
upload_url: ${{ steps.create_release.outputs.upload_url }}
243-
asset_path: ./ULauncherProInstaller/Release/ULauncherPro-Installer.msi
244-
asset_name: ULauncherPro-Installer.msi
243+
asset_path: ./UnityLauncherProInstaller/Release/UnityLauncherPro-Installer.msi
244+
asset_name: UnityLauncherPro-Installer.msi
245245
asset_content_type: application/x-msi

‎ArtifactBuild.cmd‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@echo off
22
pushd "%~dp0"
3-
powershell Compress-7Zip "ULauncherPro\bin\Release\ULauncherPro.exe" -ArchiveFileName "ULauncherPro.zip" -Format Zip
3+
powershell Compress-7Zip "UnityLauncherPro\bin\Release\UnityLauncherPro.exe" -ArchiveFileName "UnityLauncherPro.zip" -Format Zip
44
:exit
55
popd
66
@echo on

‎BuildInstaller.bat‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ ECHO === Checking required files ===
3535

3636
SET "error=0"
3737

38-
IF NOT EXIST "ULauncherPro\bin\Release\ULauncherPro.exe" (
39-
ECHO [ERROR] Missing file: ULauncherPro\bin\Release\ULauncherPro.exe
38+
IF NOT EXIST "UnityLauncherPro\bin\Release\UnityLauncherPro.exe" (
39+
ECHO [ERROR] Missing file: UnityLauncherPro\bin\Release\UnityLauncherPro.exe
4040
SET "error=1"
4141
)
42-
IF NOT EXIST "ULauncherPro\Images\icon.ico" (
43-
ECHO [ERROR] Missing file: ULauncherPro\Images\icon.ico
42+
IF NOT EXIST "UnityLauncherPro\Images\icon.ico" (
43+
ECHO [ERROR] Missing file: UnityLauncherPro\Images\icon.ico
4444
SET "error=1"
4545
)
4646

@@ -52,7 +52,7 @@ IF %error% NEQ 0 (
5252

5353
ECHO:
5454
ECHO === Building Installer ===
55-
"%devenv_path%" ULauncherPro.sln /Rebuild Release /Project ULauncherProInstaller > build_output.log 2>&1
55+
"%devenv_path%" UnityLauncherPro.sln /Rebuild Release /Project UnityLauncherProInstaller > build_output.log 2>&1
5656
SET "exitCode=%ERRORLEVEL%"
5757

5858
TYPE build_output.log

‎ULauncherPro/Resources/UnityVersionCache.json‎

Lines changed: 0 additions & 1 deletion
This file was deleted.

‎ULauncherPro.sln‎ renamed to ‎UnityLauncherPro.sln‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.13.35931.197
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ULauncherPro", "ULauncherPro\ULauncherPro.csproj", "{EC78D91A-3E63-4CAA-8BC3-9673A30FDA45}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityLauncherPro", "UnityLauncherPro\UnityLauncherPro.csproj", "{EC78D91A-3E63-4CAA-8BC3-9673A30FDA45}"
77
EndProject
8-
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "ULauncherProInstaller", "ULauncherProInstaller\ULauncherProInstaller.vdproj", "{249180EF-BFC1-9DD7-48CC-E2B9253A64E0}"
8+
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "UnityLauncherProInstaller", "UnityLauncherProInstaller\UnityLauncherProInstaller.vdproj", "{249180EF-BFC1-9DD7-48CC-E2B9253A64E0}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /