moves the using statements for me, but I'd rather not do that as it could
possibly lead to the wrong code moving around.
Adam..
-Original Message-
From: Brad Wilson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 10:28 AM
To: [EMAIL PROTECTED]
Subject: Re: [DOTNET] Csc problems
Sills, Adam wrote:
> class GreatLand.Core.DataManager {}
[...]
> using GreatLand.Core.Data;
If this isn't a typo, then what you really wanted was:
using GreatLand.Core;
There doesn't seem to be a GreatLand.Core.Data namespace anywhere.
Brad
--
Read my web log at http://www.quality.nu/dotn
ger cannot be
found. Compile with VS.NET and it works fine. Move the using statement
inside the namespace and it'll compile everywhere...
Very strange. Ideas?
Adam...
-Original Message-
From: Adam Senn [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 8:54 AM
To: [EMAIL PROTE
Adam
In all of our C# source files, the using statements are outside of the
namespace. We use primarily makefiles [which call csc] along with a few
instances of nant to build our projects and I've never needed to move the
using statements into the namespaces. Perhaps some needed references were
m