solution 1 -project 1 --images
solution 2 -project 2 --images
I want the images folder to be common for both the solutions . is that possible ? if so how ? Thanks in advance
solution 1 -project 1 --images
solution 2 -project 2 --images
I want the images folder to be common for both the solutions . is that possible ? if so how ? Thanks in advance
Images are not by default a part of the assembly generated, so depending on the way you are using that image, you have to perform the following actions:
If you are using Resources, you can simply drag-drop the image from a central folder to the Resources.resx
, it will not copy the image, instead it will link it. You can do this for multiple solutions.
If you are including images as Content, you have to add the image to your project by clicking Add > Add Existing Item from your project. The instead of clicking Add from the file chooser, you have to click Add As Link from the Add dropdown menu.
A last option is to create a common project which you include in both your solutions. In that project you can add the images, which you can reference from both solutions.