Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET 3.5 on Windows 2000

I am trying to get an ASP.NET 3.5 site to run on a Windows 2000 machine (not my idea!!!) but am having some problems. I have been working through copying required DLL files from C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5 into my app bin directory. This succesfully got me past the "assembly not found" errors.

However, I am now getting the following error.

Compiler executable file csc.exe cannot be found"

How can I fix this? It is primarily LINQ functionality I am looking to utilise.

like image 976
SiC Avatar asked Dec 09 '22 20:12

SiC


1 Answers

You are going to have many issues as .NET 3.5 is not supported on Windows 2000 (see System Requirements).

like image 115
Andrew Hare Avatar answered Dec 27 '22 12:12

Andrew Hare