CSC command line fails.

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

Does anyone have an idea what I am doing wrong here, I copy this straight
from a website example on:

http://bdn.borland.com/article/0,1410,32074,00.html


C:\D8SimpleStocks\shared>csc /t:library
/r:"C:\Progra~1\borland\janeva\bin\borland.janeva.runtime.dll
/r:"C:\Frogra~1\borland\janeva\bin\borland.janeva.services.dll"
SimpleStocks.cs
Microsoft (R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

fatal error CS2008: No inputs specified

C:\D8SimpleStocks\shared>dir *.cs
Volume in drive C has no label.
Volume Serial Number is 7847-23DE

Directory of C:\D8SimpleStocks\shared

29-12-2004 11:37 12.449 SimpleStocks.cs
1 File(s) 12.449 bytes
0 Dir(s) 13.770.973.184 bytes free
 
Martin said:
Does anyone have an idea what I am doing wrong here, I copy this straight
from a website example on:

http://bdn.borland.com/article/0,1410,32074,00.html


C:\D8SimpleStocks\shared>csc /t:library
/r:"C:\Progra~1\borland\janeva\bin\borland.janeva.runtime.dll
/r:"C:\Frogra~1\borland\janeva\bin\borland.janeva.services.dll"
SimpleStocks.cs

Isn't there a " missing after the first /r:"... here ?
 
You appear to have missed the closing inverted comma after borland.janeva.runtime.dll

Regards

Richard Blewett - DevelopMentor
http://www.dotnetconsult.co.uk/weblog
http://www.dotnetconsult.co.uk

Does anyone have an idea what I am doing wrong here, I copy this straight
from a website example on:

http://bdn.borland.com/article/0,1410,32074,00.html


C:\D8SimpleStocks\shared>csc /t:library
/r:"C:\Progra~1\borland\janeva\bin\borland.janeva.runtime.dll
/r:"C:\Frogra~1\borland\janeva\bin\borland.janeva.services.dll"
SimpleStocks.cs
Microsoft (R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

fatal error CS2008: No inputs specified
 
Back
Top