How To Deploy C# RTD Server Application

M

Michael Franz

Hi,

I am new to C# and .NET in general. I am working on writing a RTD server
for Excel using C#. I based my code on this article
http://msdn2.microsoft.com/en-us/library/aa140061(office.10).aspx . Now that
I have it written and debugged, I can not figure out how to deploy the code.

I have a few dependant DLLs that need to be included.

Is there a follow-up article that explains how to go from debug version to
production deployable? I need this to run in .NET 2.0.

Thanks

Michael
 
M

Michael Franz

Michael Franz said:
Hi,

I am new to C# and .NET in general. I am working on writing a RTD server
for Excel using C#. I based my code on this article
http://msdn2.microsoft.com/en-us/library/aa140061(office.10).aspx . Now that
I have it written and debugged, I can not figure out how to deploy the code.
Ok, being new to this and since I did this over a few weeks, I missed the
part about using regasm to register the RTD server. I had been trying to use
regsrv32 which does not find the COM entry points.

I used ilmerge to combine all of my DLLs into one, but when I use regasm I
get about 1000 registry entries. I only want one.

Also, I have to run my RTD from Visual Studio once before I can use it in
any workbook without have VS running at all.

Michael
 
M

Michael Franz

Ok, being new to this and since I did this over a few weeks, I missed the
part about using regasm to register the RTD server. I had been trying to use
regsrv32 which does not find the COM entry points.

I used ilmerge to combine all of my DLLs into one, but when I use regasm I
get about 1000 registry entries. I only want one.

Also, I have to run my RTD from Visual Studio once before I can use it in
any workbook without have VS running at all.

Michael

I have created a Setup Project in VS 2008. This project works fine on my
development machine but I am unable to get it to work on any other machine.

There seems to be plenty of people have issues with deploying .NET
solutions. but no good answers to how to get it to work.

If it works so easily from VS why is deploying so hard?
 

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