Distributed Application

W

Walt

I am developing a distributed application using the
Dwamish example as a guideline. I am using VB.NET in
VS2003. I started with a Visual Basic Simple Distributed
Application from the Enterprise Template Projects. I
added a new System project from the Enterprise Template
building blocks, called "Common". In Common I added a
folder called "Data". Within the data folder I created 6
classes. Each class instantiates a dataset with one
table. I then went on to create classes in the
DataAccess layer, and the BusinessFacade layer to create
and fill the datasets defined in the Common.Data
assembly. The solution builds without error. The
problem is only one class appears in the Common.Data
assembly. Each class is fully named. For example, each
class in the Common.Data layer includes Namespace
LynxEnterprise.Common.Data. Similarly, each class in the
DataAccess layer includes Namespace
LynxEnterprise.DataAccess.

I used ildasm to disassemble the
LynxEnterprise.Common.dll and sure enough only one class
is in the assembly (the first class I created). Using
ildasm on LynxEnterprise.DataAccess.dll I have all
classes. Any ideas on why I have only one class in
Common?

Any help is appreciated.
 
W

Walt

I found the solution. It turns out that Common was not
checked in the Configuration Manager for the solution.

Thanks
 

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