home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / dotNETJSharp / VJREDIST.EXE / jsredist.msi / Binary.BIN_File_138194 < prev    next >
Encoding:
Text File  |  2003-03-19  |  1.1 KB  |  23 lines

  1. REM 
  2. REM Pass arguments into the deferred custom actions
  3. REM 
  4. REM Both the CA will execute in deferred mode and will be run only during installing
  5.  
  6. REM Get the .NET Install directory
  7. Dim all
  8. Dim dotnetver : dotnetver = Session.Property( "URTVersion" )
  9. Dim windir : windir = Session.Property( "WindowsFolder" )
  10. Dim dotnetdir : dotnetdir = windir & "Microsoft.NET\Framework\" & dotnetver & "\"
  11.  
  12. REM Add the VJ# .NET Compiler Entry into machine.config
  13. '[DEBUG]|[REMOVE]|[MSNETINSTALLDIR]|[LANGUAGE]|[EXTENSION]|[TYPE]
  14. Dim last3 : last3 = "|VJ#;VJS;VJSharp|.jsl|Microsoft.VJSharp.VJSharpCodeProvider, VJSharpCodeProvider, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a|"
  15. all = "0" & "|0|" & dotnetdir & last3
  16. Session.Property( "CA_AddVJSCompiler_Machine_config.3643236F_FC70_11D3_A536_0090278A1BB8" ) = all
  17.  
  18. REM Add the HTTPHandlers to machine.config and the Scriptmaps to the IIS Metabase
  19. '[DEBUG]|[ADD]|[MSNETINSTALLDIR]|
  20. all = "0" & "|1|" & dotnetdir & "|"
  21. Session.Property( "CA_ScriptMaps_VJS.3643236F_FC70_11D3_A536_0090278A1BB8" ) = all
  22.  
  23.