I've created a VSTO solution that includes a Telerik control. When compiling the solution Visual Studio produces a *.manifest file that contains a reference to Telerik.Windows.Controls:
Additionally several language dependent assemblies are being referenced:
When double clicking on the *.vsto-file to install the addin the installer requires all languages (de,es,it, nl, tr) to be present in the installation directory.
Is there a way to limit this requirement to one certain language? I only want to support german and do not want to deploy the other languages.
Thanks,
Michael
<dependency> <dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true"> <assemblyIdentity name="Telerik.Windows.Controls" version="2010.2.812.40" publicKeyToken="5803CFA389C90CE7" language="neutral" processorArchitecture="msil" /> </dependentAssembly> </dependency> Additionally several language dependent assemblies are being referenced:
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="de\Telerik.Windows.Controls.resources.dll" size="12288">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="es\Telerik.Windows.Controls.resources.dll" size="12288">
...
When double clicking on the *.vsto-file to install the addin the installer requires all languages (de,es,it, nl, tr) to be present in the installation directory.
Is there a way to limit this requirement to one certain language? I only want to support german and do not want to deploy the other languages.
Thanks,
Michael