This repository was archived by the owner on May 9, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Original file line number Diff line number Diff line change 21
21
with :
22
22
submodules : recursive
23
23
24
- - name : setup-msbuild
25
- uses : microsoft/setup-msbuild@v1
24
+ - name : Setup msbuild
25
+ uses : microsoft/setup-msbuild@v1
26
+
27
+ - name : Setup nuget
28
+ uses : nuget/setup-nuget@v1
29
+ with :
30
+ nuget-api-key : ${{ secrets.NuGetAPIKey }}
31
+ nuget-version : ' 5.x'
26
32
27
33
# Build Il2CppAssemblyUnhollower
28
34
- name : Build Il2CppAssemblyUnhollower
@@ -31,24 +37,16 @@ jobs:
31
37
32
38
# Restore mcs nuget
33
39
- name : Restore mcs nuget
34
- uses : nuget/setup-nuget@v1
35
- with :
36
- nuget-api-key : ${{ secrets.NuGetAPIKey }}
37
- nuget-version : ' 5.x'
38
- - run : nuget restore lib\mcs-unity\mcs.sln
40
+ run : nuget restore lib\mcs-unity\mcs.sln
39
41
40
42
# Build mcs
41
43
- name : Build mcs
42
44
shell : cmd
43
45
run : msbuild lib\mcs-unity\mcs\mcs.csproj -t:Restore -t:Rebuild -p:Platform="AnyCPU" -p:Configuration=Release
44
46
45
47
# Restore NuGet packages
46
- - name : Restore UnityExplorer NuGet
47
- uses : nuget/setup-nuget@v1
48
- with :
49
- nuget-api-key : ${{ secrets.NuGetAPIKey }}
50
- nuget-version : ' 5.x'
51
- - run : nuget restore src\UnityExplorer.sln
48
+ - name : Restore UnityExplorer nuget
49
+ run : nuget restore src\UnityExplorer.sln
52
50
53
51
# Build UnityExplorer Releases
54
52
You can’t perform that action at this time.
0 commit comments