Benutzer:MovGP0/C♯/Assemblies
aus Wikipedia, der freien Enzyklopädie
< Benutzer:MovGP0 | C♯
MovGP0 | Über mich | Hilfen | Artikel | Weblinks | Literatur | Zitate | Notizen | Programmierung | MSCert | Physik |
Assembly ManagementAssembly Signature
sn -k myKey.snk
sn -Tp "$env:windir\Microsoft.NET\Framework\v4.0.30319\System.Data.dll"
Achtung: Für veröffentlichte Anwendungen wird ein Authenticode[1] benötigt. Global Assembly Cache (GAC)
gacutil -l
gacutil -l C:\myassembly.dll
gacutil -u "myassembly.dll"
Assembly Redirect<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="myAssembly" publicKeyToken="32ab4ba45e0a69a1" culture="en-us" />
<bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Additional Assembly Locations<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<codeBase version="1.0.0.0" href="http://www.mydomain.com/ReferenceAssembly.dll" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
WinRT (Windows Runtime)
Einschränkungen
Assembly Information> [reflection.assemblyname]::GetAssemblyName("${pwd}\Microsoft.GLEE.dll") | fl
Name : Microsoft.GLEE
Version : 1.0.0.0
CultureInfo :
CodeBase : file:///C:/projects/powershell/BuildAnalyzer/...
EscapedCodeBase : file:///C:/projects/powershell/BuildAnalyzer/...
ProcessorArchitecture : MSIL
Flags : PublicKey
HashAlgorithm : SHA1
VersionCompatibility : SameMachine
KeyPair :
FullName : Microsoft.GLEE, Version=1.0.0.0, Culture=neut...
The element ProcessorArchitecture[2] identifies the target processor. Referenzen
Quellen
Siehe auch |