first i want to explain my enviroment.
I have a Service.exe (it's a service) and this is one project in a special folder. And i have a Configurator.exe (wpf app) and this is another project in a different folder. The Configurator.exe needs the content of Service.Properties.
My solutions i tried: In Configurator:
using Service.Properties;
string var1 = Settings.Default.var1;
That works BUT when i use this way, the whole Service project is imported into the configurator project (in the bin). That is not allowed to happen in my case and it has to be separated.
What else i can do? The there is also a xml setting file. I can parse and load the data. But it's not so elegant, like using directly the Properties.
I want to know, if it is possible to use the Properties of another project, without importing the project. Somehow it should be possible to make a reference or import only the class and not the whole project.
But i dont know how :/
Can someone maybe give me a hint? :)