mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
03bcf72d90
git-svn-id: http://svn.pyinstaller.org/trunk@844 8dd32b29-ccff-0310-8a9a-9233e24343b1
17 lines
732 B
XML
17 lines
732 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<!--
|
|
Per-application Configuration on Windows Server 2003 example
|
|
http://msdn.microsoft.com/en-us/library/aa375660%28VS.85%29.aspx
|
|
-->
|
|
<configuration>
|
|
<windows>
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
<assemblyIdentity processorArchitecture="X86" name="Microsoft.Windows.mysampleApp" type="win32" version="1.0.0.0"/>
|
|
<publisherPolicy apply="no"/>
|
|
<dependentAssembly>
|
|
<assemblyIdentity type="win32" processorArchitecture="x86" name="Microsoft.Windows.SampleAssembly" publicKeyToken="0000000000000000"/>
|
|
<bindingRedirect oldVersion="2.0.0.0" newVersion="2.0.1.0"/>
|
|
</dependentAssembly>
|
|
</assemblyBinding>
|
|
</windows>
|
|
</configuration> |