Skip to content

Commit

Permalink
Fix Windows SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMa0012 committed Aug 3, 2024
1 parent 56107dd commit a2fe1f3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion _1_2_Install_VisualStudio.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ cd InstallationTools
echo Installing Visual Studio 2022...


vs_Community.exe --wait --nocache --addProductLang En-us --add Microsoft.VisualStudio.Workload.ManagedDesktop --add Microsoft.VisualStudio.Workload.NativeDesktop --add Microsoft.VisualStudio.Workload.NativeGame --add Microsoft.VisualStudio.Workload.Universal --add Component.Unreal.Ide --add Component.Unreal --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64
rem https://learn.microsoft.com/zh-cn/visualstudio/install/workload-component-id-vs-community?view=vs-2022
rem https://learn.microsoft.com/zh-cn/visualstudio/install/use-command-line-parameters-to-install-visual-studio?view=vs-2022

vs_Community.exe --wait --nocache --addProductLang En-us --add Microsoft.VisualStudio.Workload.ManagedDesktop --add Microsoft.VisualStudio.Workload.NativeDesktop --add Microsoft.VisualStudio.Workload.NativeGame --add Microsoft.VisualStudio.Workload.Universal --add Component.Unreal.Ide --add Component.Unreal --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK --add Microsoft.VisualStudio.Component.Windows11SDK.22621



rem --quiet --norestart
rem --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64
Expand Down
2 changes: 1 addition & 1 deletion _3_1_Update_MooaToon_Engine.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ call _2_5_Settings.bat

pushd %engineFolderName%

git pull --depth=50
git pull origin %engineBranchName% --depth=100
git submodule update --init --recursive

popd
Expand Down
2 changes: 1 addition & 1 deletion _3_2_Update_MooaToon_Project.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ call _2_5_Settings.bat

pushd %projectFolderName%

git pull --depth=50
git pull origin %projectBranchName% --depth=100

popd

Expand Down
2 changes: 1 addition & 1 deletion _3_5_Update_InstallationTool.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set branchName=main


if exist .git (
git pull origin %branchName% --depth=50
git pull origin %branchName% --depth=100
) ^
else (
git init
Expand Down

0 comments on commit a2fe1f3

Please sign in to comment.