csc.exe is missing

G

Guest

I installed
Microsoft .NET Framework Version 1.1 Redistributable and
Microsoft .NET Framework 1.1 Software Development Kit

and was expecting to get a C# Compiler. But csc.exe is missing in my filesystem. I assume that it would have been placed in C:\Programme\Microsoft.NET\SDK\v1.1\Bin along with all the other .exe files (wsdl.exe for example is present).

Any idea where i can get csc.exe? Or will i have to get a different C# Compiler? All I want to do is build a .NET Client for interoperability tests with my Java based Webservice.

This is what i downloaded:

http://msdn.microsoft.com/library/default.asp?url=/downloads/list/netdevframework.asp


Microsoft .NET Framework Version 1.1 Redistributable
The Microsoft .NET Framework 1.1 includes everything you need to run applications built using the .NET Framework, including the common language runtime and class libraries.
Date: April 9, 2003


Microsoft .NET Framework 1.1 Software Development Kit
The Microsoft .NET Framework 1.1 Software Development Kit (SDK) includes everything you need to write, build, test, and deploy applications built using the .NET Framework - documentation, samples, and command-line tools and compilers.

Thanks

Thomas
 
M

Morten Wennevik

csc.exe should be installed with your framework, check

c:\windows\microsoft.net\framework\v1.1.4322\

there should be a bunch of files in there, and among those, csc.exe
 
J

Jon Skeet [C# MVP]

ThomasD said:
I installed
Microsoft .NET Framework Version 1.1 Redistributable and
Microsoft .NET Framework 1.1 Software Development Kit

and was expecting to get a C# Compiler. But csc.exe is missing in my
filesystem. I assume that it would have been placed in
C:\Programme\Microsoft.NET\SDK\v1.1\Bin along with all the other .exe
files (wsdl.exe for example is present).

No, because it's not part of the SDK - it's part of the framework.
Any idea where i can get csc.exe? Or will i have to get a different C#
Compiler? All I want to do is build a .NET Client for interoperability
tests with my Java based Webservice.

You will already have it installed - it'll be in

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top