vote up 0 vote down star

I have a class library that wraps web services. During design, the web service config are dumped into the app.config for the class library, that have to be copied over to the main app.config.

Therefore, I don't need the class libraries app.config. How can I ignore this file, so that build will not generate a file like ClassLibrary.dll.config

flag

45% accept rate

2 Answers

vote up 0 vote down

One thing you might be able to do is explicitly load another config file in your class library. This would require some of the .NET 2.0 configuration calls that are out there.

For details on the .NET 2.0 configuration system, see Jon Rista's three-part series on .NET 2.0 configuration up on CodeProject.

Highly recommended, well written and extremely helpful!

Marc

link|flag
sadly, these don't solve my problem. any other suggestions – tful Jul 1 at 17:15
If you don't need the app.config for the library project at all, why don't you just simply delete the file? – marc_s Jul 1 at 20:48
it is needed for default design, but not afterwards. guess this is a VS oddity one has to to live with. – tful Jul 2 at 14:38
vote up 0 vote down

Have you tried setting the property "build action" to "None".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.