File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 - name : Set up MSBuild
1616 uses : microsoft/setup-msbuild@v2
1717
18+ - name : Build Core Win32 DLL
19+ run : msbuild uc_online2_core.vcxproj -p:Configuration=Release -p:Platform=Win32 -m
20+
21+ - name : Build Core x64 DLL
22+ run : msbuild uc_online2_core.vcxproj -p:Configuration=Release -p:Platform=x64 -m
23+
1824 - name : Build Win32 DLL
1925 run : msbuild uc_online2.vcxproj -p:Configuration=Release -p:Platform=Win32 -m
2026
2531 shell : pwsh
2632 run : |
2733 $files = @(
34+ "build/x86/uc_online2_core.dll",
35+ "build/x64/uc_online2_core.dll",
2836 "build/x86/steam_api.dll",
2937 "build/x64/steam_api64.dll"
3038 )
Original file line number Diff line number Diff line change 2121 - name : Set up MSBuild
2222 uses : microsoft/setup-msbuild@v2
2323
24+ - name : Build Core x86 version
25+ run : msbuild uc_online2_core.vcxproj -p:Configuration=Release -p:Platform=Win32 -m
26+
27+ - name : Build Core x64 version
28+ run : msbuild uc_online2_core.vcxproj -p:Configuration=Release -p:Platform=x64 -m
29+
2430 - name : Build x86 version (steam_api.dll)
2531 run : msbuild uc_online2.vcxproj -p:Configuration=Release -p:Platform=Win32 -m
2632
3137 shell : pwsh
3238 run : |
3339 $files = @(
40+ "build/x86/uc_online2_core.dll",
41+ "build/x64/uc_online2_core.dll",
3442 "build/x86/steam_api.dll",
3543 "build/x64/steam_api64.dll"
3644 )
5058 New-Item -ItemType Directory -Path "$packageRoot/x86" -Force | Out-Null
5159 New-Item -ItemType Directory -Path "$packageRoot/x64" -Force | Out-Null
5260
61+ Copy-Item "build/x86/uc_online2_core.dll" "$packageRoot/x86/uc_online2_core.dll"
62+ Copy-Item "build/x64/uc_online2_core.dll" "$packageRoot/x64/uc_online2_core.dll"
5363 Copy-Item "build/x86/steam_api.dll" "$packageRoot/x86/steam_api.dll"
5464 Copy-Item "build/x64/steam_api64.dll" "$packageRoot/x64/steam_api64.dll"
5565
Original file line number Diff line number Diff line change 44IDI_ICON1 ICON "icon.ico"
55
66VS_VERSION_INFO VERSIONINFO
7- FILEVERSION 1,3 ,0,0
8- PRODUCTVERSION 1,3 ,0,0
7+ FILEVERSION 1,4 ,0,0
8+ PRODUCTVERSION 1,4 ,0,0
99 FILEFLAGSMASK 0x3fL
1010#ifdef _DEBUG
1111 FILEFLAGS 0x1L
2222 BEGIN
2323 VALUE "CompanyName", "veeanti | union-crax.xyz"
2424 VALUE "FileDescription", "uc-online2, custom Steam API modified for UC"
25- VALUE "FileVersion", "1.3 .0.0"
25+ VALUE "FileVersion", "1.4 .0.0"
2626 VALUE "InternalName", "uc-online2"
2727 VALUE "LegalCopyright", "union-crax.xyz | veeanti 2026"
2828 #ifdef IS_64BIT
3131 VALUE "OriginalFilename", "steam_api.dll"
3232 #endif
3333 VALUE "ProductName", "uc-online2"
34- VALUE "ProductVersion", "1.3 .0.0"
34+ VALUE "ProductVersion", "1.4 .0.0"
3535 VALUE "Comments", "https://union-crax.xyz | https://vee-anti.xyz"
3636 END
3737 END
Original file line number Diff line number Diff line change 44IDI_ICON1 ICON "icon.ico"
55
66VS_VERSION_INFO VERSIONINFO
7- FILEVERSION 1,3 ,0,0
8- PRODUCTVERSION 1,3 ,0,0
7+ FILEVERSION 1,4 ,0,0
8+ PRODUCTVERSION 1,4 ,0,0
99 FILEFLAGSMASK 0x3fL
1010#ifdef _DEBUG
1111 FILEFLAGS 0x1L
2222 BEGIN
2323 VALUE "CompanyName", "veeanti | union-crax.xyz"
2424 VALUE "FileDescription", "uc-online2_core, uc-online2 'client' dll"
25- VALUE "FileVersion", "1.3 .0.0"
25+ VALUE "FileVersion", "1.4 .0.0"
2626 VALUE "InternalName", "uc-online2_core"
2727 VALUE "LegalCopyright", "union-crax.xyz | veeanti 2026"
2828 #ifdef IS_64BIT
3131 VALUE "OriginalFilename", "uc-online2_core.dll"
3232 #endif
3333 VALUE "ProductName", "uc-online2_core"
34- VALUE "ProductVersion", "1.3 .0.0"
34+ VALUE "ProductVersion", "1.4 .0.0"
3535 VALUE "Comments", "https://union-crax.xyz | https://vee-anti.xyz"
3636 END
3737 END
You can’t perform that action at this time.
0 commit comments