Can not Access System Libraries

Last post 09-09-2005 7:19 AM by DotNetUser2005. 2 replies.

Sort Posts:

  • Can not Access System Libraries

    09-08-2005, 5:46 AM
    To anyone that can help, i installed the SDK and ran the mk.bat file, however it cannot seem to find the systems library which means i can't compile any asps.

    If anyone has a solution to this i'd be grateful if you could let me know!

    Thanks

  • Re: Can not Access System Libraries

    09-08-2005, 9:32 AM
    • All-Star
      45,854 point All-Star
    • SomeNewKid
    • Member since 08-10-2003, 12:16 AM
    • Western Australia
    • Posts 8,027

    At the start of your mk.bat file, the command is probably like this:

       csc.exe /t:library /out:AssemblyName.dll ........
    or 
       vbc.exe /t:library /out:AssemblyName.dll ........

    What you'll need to do is update the csc.exe or vbc.exe part with a full path, like this:

       C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc.exe /t:library /out:AssemblyName.dll ........
    or 
       C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\vbc.exe /t:library /out:AssemblyName.dll ........

    That may be enough to get you going. If not, please show me the content of your mk.bat file.
     

    Alister
  • Re: Can not Access System Libraries

    09-09-2005, 7:19 AM
    Cheers mate, thats done the trick!

    Thanks

Page 1 of 1 (3 items)