Fix manifests to include manifestVersion attribute and introduce an application manifest. The application manifest will be included in the eventual SDK so that applications that depend on Heimdal can correctly reference the Heimdal assemblies.
18 lines
552 B
XML
18 lines
552 B
XML
<?xml version="1" encoding="UTF-8" standalone="yes" ?>
|
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
<assemblyIdentity type="win32" name="@name@"
|
|
processorArchitecture="@cpu@"
|
|
version="@version@"
|
|
publicKeyToken="@pkt@" />
|
|
<file name="libgssapi.dll" />
|
|
<dependency>
|
|
<dependentAssembly>
|
|
<assemblyIdentity type="win32" name="@krbname@"
|
|
language="*"
|
|
processorArchitecture="@cpu@"
|
|
version="@krbversion@"
|
|
publickeytoken="@pkt@" />
|
|
</dependentAssembly>
|
|
</dependency>
|
|
</assembly>
|