ASP.NET 3.5 for Windows 2000

I am trying to get an ASP.NET 3.5 site to run on a computer running Windows 2000 (not my idea !!!), but I have some problems. I worked with copying the necessary DLL files from C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5 to my application bin directory. This successfully led me to "build not found" errors.

However, now I get the following error.

Could not find csc.exe compiler executable

How can i fix this? This is primarily the LINQ functionality that I am looking to use.

+4
source share
6 answers

You can try installing the .NET Framework 3.5 manually. It relies on the .NET 2.0 runtime and additional materials.

+2
source

Install in it a virtual machine with newer Windows; -)

+1
source

Many 3.5 sites will work fine in 2.0, you just need to compile them. I would have the one who built the application, switched to 2.0 goals and watched how this happens. If this does not happen, perhaps the VM option is the best way to fly.

+1
source

Save some time and pain, install on a platform that supports 3.5.

Trying to get around minimum requirements usually comes back to bite you at the end.

Just because you may not always mean what you need. :)

0
source

Not familiar with the environment, but ...

More of the framework (including csc.exe) is located in% WINDIR% \ Microsoft.NET \ Framework \ v3.5 (for example, C: \ WINNT \ Microsoft.NET \ Framework \ v3.5) - these are the files on your installation and directory on your way?

0
source

Source: https://habr.com/ru/post/1286564/


All Articles