i have a vs solution with 3 projects
MyCore: class library with DAL,BLL,helper functions etc...
MyWebsite: asp.net website which references MyCore
MyApplication: wpf app that also references MyCore
this setup allows me to reuse all the same functionality in the website and in the app.
the only problem is images. right now all icons i keeps separately in the website (and are accessed by their url) and also in the desktop app (accessed as resource)
is there any way i can somehow store the icons in MyCore and use them in both projects?
any ideas?
thank you all very much for your time and patience