@@ -0,0 +1,10 @@
+<configuration>
+ <windows>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly>
+ <assemblyIdentity type="win32" name="Microsoft.VC80.CRT" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
+ <bindingRedirect oldVersion="8.0.41204.256-8.0.50727.4053" newVersion="8.0.50727.4053"/>
+ </dependentAssembly>
+ </assemblyBinding>
+ </windows>
+</configuration>
@@ -0,0 +1,4 @@
+Templates\Full\
+Templates\Empty\
+Templates\Empty PhysX\
+Templates\Full PhysX\
@@ -0,0 +1,22 @@
+@echo off
+setlocal
+
+for /F "delims=^" %%a in (allProjects.txt) do if exist "%%a"\generateProjects.bat (
+ setlocal
+ echo.
+ echo === %%a =========
+ cd %%a
+ call generateProjects.bat noPause
+ endlocal
+)
+endlocal
+echo.
+pause