Skip to content

Commit 45b666f

Browse files
authored
Merge pull request #63 from jwittner/fix/examplesInstaller
Drop examples installer support
2 parents 3a0a553 + 9abefbe commit 45b666f

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ Find-UnitySetupInstaller -Version '2017.3.0f3' | Format-Table
7878
# Setup 2017.3.0f3 553688024 2017-12-18 08:15:20 https://netstorage.unity3d.com/unity/...
7979
# Documentation 2017.3.0f3 358911256 2017-12-18 08:18:37 https://netstorage.unity3d.com/unity/...
8080
# StandardAssets 2017.3.0f3 189886032 2017-12-18 08:15:52 https://netstorage.unity3d.com/unity/...
81-
# ExampleProject 2017.3.0f3 258824680 2017-12-18 08:15:39 https://netstorage.unity3d.com/unity/...
8281
# Metro 2017.3.0f3 172298008 2017-12-18 08:17:44 https://netstorage.unity3d.com/unity/...
8382
# UWP_IL2CPP 2017.3.0f3 152933480 2017-12-18 08:17:55 https://netstorage.unity3d.com/unity/...
8483
# Android 2017.3.0f3 194240888 2017-12-18 08:16:06 https://netstorage.unity3d.com/unity/...

UnitySetup/UnitySetup.psm1

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ enum UnitySetupComponentType
88
Setup = (1 -shl 0)
99
Documentation = (1 -shl 1)
1010
StandardAssets = (1 -shl 2)
11-
ExampleProject = (1 -shl 3)
11+
Windows_IL2CPP = (1 -shl 3)
1212
Metro = (1 -shl 4)
1313
UWP_IL2CPP = (1 -shl 5)
1414
Android = (1 -shl 6)
@@ -19,7 +19,6 @@ enum UnitySetupComponentType
1919
Mac = (1 -shl 11)
2020
Vuforia = (1 -shl 12)
2121
WebGL = (1 -shl 13)
22-
Windows_IL2CPP = (1 -shl 14)
2322
All = (-1)
2423
}
2524

@@ -168,7 +167,6 @@ function Find-UnitySetupInstaller
168167
[UnitySetupComponentType]::Setup = ,"Windows64EditorInstaller/UnitySetup64-$Version.exe";
169168
[UnitySetupComponentType]::Documentation = ,"WindowsDocumentationInstaller/UnityDocumentationSetup-$Version.exe";
170169
[UnitySetupComponentType]::StandardAssets = ,"WindowsStandardAssetsInstaller/UnityStandardAssetsSetup-$Version.exe";
171-
[UnitySetupComponentType]::ExampleProject = ,"WindowsExampleProjectInstaller/UnityExampleProjectSetup-$Version.exe";
172170
[UnitySetupComponentType]::Metro = ,"TargetSupportInstaller/UnitySetup-Metro-Support-for-Editor-$Version.exe";
173171
[UnitySetupComponentType]::UWP_IL2CPP = ,"TargetSupportInstaller/UnitySetup-UWP-IL2CPP-Support-for-Editor-$Version.exe";
174172
[UnitySetupComponentType]::Android = ,"TargetSupportInstaller/UnitySetup-Android-Support-for-Editor-$Version.exe";

0 commit comments

Comments
 (0)