0

I'm trying to figure out a way to have a separate project for my two applications that are in the same solution. Can this be done? I can't find any examples and even tutorials for globalization with satellite assemblies are pretty bad. I want both applications to share a common base of resources. Does anyone know how I would go about this? Silverlight can't reference non silverlight projects so that is a hurdle already.

Danny
  • 59
  • 2
  • 7
  • Are you talking about 2 Siverlight projects? Or one Silverlight and one "something else" project? – iCollect.it Ltd Jun 07 '12 at 15:57
  • One silverlight project and one asp.net project. The asp.net project has its own pages and it integrates a silverlight control as well. Also I have class libraries that need to use the resources as well. – Danny Jun 07 '12 at 17:03

1 Answers1

0

You can add separate project as Silverlight class library project and reference it from both Silverlight and ASP.NET project. Visual Studio may throw warnings in this case, but this works fine.

Ihor Deyneka
  • 1,326
  • 1
  • 19
  • 37
  • Well some of the class libraries are shared with other project. SO I can't depend on people having silverlight installed. – Danny Jun 07 '12 at 19:43