Below is the format MSDN specifies a Publisher Configuration File (policy) should be for the WinSxS DLL. I am confused as to what the file should be name (maybe .dll.config). All the information online is about Managed Assemblies, which state to create a policy DLL, sign it, and it can easily be installed using Wix.
I have successfully created a DLL and installed it to the WinSxS folder by creating a manifest file that describes it as a WinSxS dll. I need information on creating a policy file for new DLL versions, that would allow applications that are binded to older versions of the DLL to bind to the new DLL.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32-policy"
publicKeyToken="b09aca5b7f613458"
name="policy.1.0.ssc"
version="1.0.0.0"
processorArchitecture="x86"/>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="ssc"
processorArchitecture="x86"
publicKeyToken="b09aca5b7f613458"/>
<bindingRedirect oldVersion="0.0.0.0" newVersion="1.0.0.0"/>
</dependentAssembly>
</dependency>
</assembly>