home *** CD-ROM | disk | FTP | other *** search
- REM
- REM Pass arguments into the deferred custom actions
- REM
- REM Both the CA will execute in deferred mode and will be run only during installing
-
- REM Get the .NET Install directory
- Dim all
- Dim dotnetver : dotnetver = Session.Property( "URTVersion" )
- Dim windir : windir = Session.Property( "WindowsFolder" )
- Dim dotnetdir : dotnetdir = windir & "Microsoft.NET\Framework\" & dotnetver & "\"
-
- REM Add the VJ# .NET Compiler Entry into machine.config
- '[DEBUG]|[REMOVE]|[MSNETINSTALLDIR]|[LANGUAGE]|[EXTENSION]|[TYPE]
- Dim last3 : last3 = "|VJ#;VJS;VJSharp|.jsl|Microsoft.VJSharp.VJSharpCodeProvider, VJSharpCodeProvider, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a|"
- all = "0" & "|0|" & dotnetdir & last3
- Session.Property( "CA_AddVJSCompiler_Machine_config.3643236F_FC70_11D3_A536_0090278A1BB8" ) = all
-
- REM Add the HTTPHandlers to machine.config and the Scriptmaps to the IIS Metabase
- '[DEBUG]|[ADD]|[MSNETINSTALLDIR]|
- all = "0" & "|1|" & dotnetdir & "|"
- Session.Property( "CA_ScriptMaps_VJS.3643236F_FC70_11D3_A536_0090278A1BB8" ) = all
-
-