Config files

V

vicmann

If xyz.exe is the executable name...

What's the purpose of "xyz.config" file?

For what is the "xyz.vshost.exe"?

Do they have to be created? Have to distribute them when distributing an
app?

Is there a special config file always called App.config? How is it different
from "xyz.config"?
 
J

Jon Skeet [C# MVP]

vicmann said:
If xyz.exe is the executable name...

What's the purpose of "xyz.config" file?

It's the configuration file for xyz.exe.
For what is the "xyz.vshost.exe"?

See http://blogs.msdn.com/dtemp/archive/2004/08/17/215764.aspx
Do they have to be created? Have to distribute them when distributing an
app?

You don't want to distribute the vshost version. If you use a
configuration file, you'll need to distribute that as well.
Is there a special config file always called App.config? How is it different
from "xyz.config"?

App.config is copied to xyz.config at build time.
 

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