diff --git a/README.md b/README.md index 179220f..fefc35b 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,6 @@ Find-UnitySetupInstaller -Version '2017.3.0f3' | Format-Table # Setup 2017.3.0f3 553688024 2017-12-18 08:15:20 https://netstorage.unity3d.com/unity/... # Documentation 2017.3.0f3 358911256 2017-12-18 08:18:37 https://netstorage.unity3d.com/unity/... # StandardAssets 2017.3.0f3 189886032 2017-12-18 08:15:52 https://netstorage.unity3d.com/unity/... -# ExampleProject 2017.3.0f3 258824680 2017-12-18 08:15:39 https://netstorage.unity3d.com/unity/... # Metro 2017.3.0f3 172298008 2017-12-18 08:17:44 https://netstorage.unity3d.com/unity/... # UWP_IL2CPP 2017.3.0f3 152933480 2017-12-18 08:17:55 https://netstorage.unity3d.com/unity/... # Android 2017.3.0f3 194240888 2017-12-18 08:16:06 https://netstorage.unity3d.com/unity/... diff --git a/UnitySetup/UnitySetup.psm1 b/UnitySetup/UnitySetup.psm1 index e205995..5430d89 100644 --- a/UnitySetup/UnitySetup.psm1 +++ b/UnitySetup/UnitySetup.psm1 @@ -8,7 +8,7 @@ enum UnitySetupComponentType Setup = (1 -shl 0) Documentation = (1 -shl 1) StandardAssets = (1 -shl 2) - ExampleProject = (1 -shl 3) + Windows_IL2CPP = (1 -shl 3) Metro = (1 -shl 4) UWP_IL2CPP = (1 -shl 5) Android = (1 -shl 6) @@ -19,7 +19,6 @@ enum UnitySetupComponentType Mac = (1 -shl 11) Vuforia = (1 -shl 12) WebGL = (1 -shl 13) - Windows_IL2CPP = (1 -shl 14) All = (-1) } @@ -168,7 +167,6 @@ function Find-UnitySetupInstaller [UnitySetupComponentType]::Setup = ,"Windows64EditorInstaller/UnitySetup64-$Version.exe"; [UnitySetupComponentType]::Documentation = ,"WindowsDocumentationInstaller/UnityDocumentationSetup-$Version.exe"; [UnitySetupComponentType]::StandardAssets = ,"WindowsStandardAssetsInstaller/UnityStandardAssetsSetup-$Version.exe"; - [UnitySetupComponentType]::ExampleProject = ,"WindowsExampleProjectInstaller/UnityExampleProjectSetup-$Version.exe"; [UnitySetupComponentType]::Metro = ,"TargetSupportInstaller/UnitySetup-Metro-Support-for-Editor-$Version.exe"; [UnitySetupComponentType]::UWP_IL2CPP = ,"TargetSupportInstaller/UnitySetup-UWP-IL2CPP-Support-for-Editor-$Version.exe"; [UnitySetupComponentType]::Android = ,"TargetSupportInstaller/UnitySetup-Android-Support-for-Editor-$Version.exe";