├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question---get-support.md └── PULL_REQUEST_TEMPLATE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Docs ├── CHANGELOG.md └── Report.txt ├── Images ├── DevCase_Banner.png ├── Paypal_Donate.png ├── Report.png ├── Tab1-Product.png ├── Tab2-Build.png ├── Tab3-Identity.png ├── envato_circle.png ├── github_circle.png └── paypal_circle.png ├── Inno-Setup ├── Output │ └── NET Assembly Info.exe ├── embedded │ ├── CompiledCode.bin │ ├── InfoBefore.rtf │ ├── WizardImage.bmp │ ├── WizardSmallImage.bmp │ ├── en.isl │ └── es.isl ├── icon.ico ├── install_script.iss ├── {app} │ ├── AssemblyInfo.dll │ ├── AssemblyInfo.dll.config │ ├── ServerRegistrationManager.exe │ ├── ServerRegistrationManager.exe.config │ ├── SharpShell.dll │ ├── System.Buffers.dll │ ├── System.Collections.Immutable.dll │ ├── System.Memory.dll │ ├── System.Numerics.Vectors.dll │ ├── System.Reflection.Metadata.dll │ ├── System.Reflection.MetadataLoadContext.dll │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Runtime.dll │ ├── Test Assemblies │ │ ├── .Readme.txt │ │ ├── Dll (AnyCPU).dll │ │ ├── Dll (x64).dll │ │ ├── Dll (x86).dll │ │ ├── WinExe (AnyCPU).exe │ │ ├── WinExe (AnyCPU, Prefer 32-Bit).exe │ │ ├── WinExe (x64).exe │ │ └── WinExe (x86).exe │ └── uninstall.ico ├── {commoncf} │ └── Inno Setup │ │ ├── Carbon.vsf │ │ └── VclStylesinno.dll └── {tmp} │ ├── WizardBitmaps │ ├── AuthorWebsiteCarbon.bmp │ ├── AuthorWebsiteWhite.bmp │ ├── FolderCarbon.bmp │ ├── FolderWhiteClassic.bmp │ ├── FolderWhiteModern.bmp │ ├── StartMenuCarbon.bmp │ ├── StartMenuWhiteClassic.bmp │ └── StartMenuWhiteModern.bmp │ └── install_script.iss ├── LICENSE ├── README.md ├── SECURITY.md ├── SharpShell ├── Apex.WinForms.dll ├── Apex.dll ├── ServerManager.exe ├── ServerRegistrationManager.exe ├── ServerRegistrationManager.exe.config ├── SharpShell Easy Log.exe ├── SharpShell Easy Log.exe.config ├── SharpShell.dll ├── SharpShell.xml └── ShellExtensionManager.exe └── Solution ├── NET Assembly Info ShellEx.sln └── NET Assembly Info ShellEx ├── AssemblyInfo.vb ├── ElektroKit └── Interop │ └── Win32 │ ├── AssemblyInfoFlags.vb │ ├── IAssemblyCache.vb │ ├── NativeAssemblyInfo.vb │ ├── NativeMethods.vb │ └── QueryAssemblyInfoFlags.vb ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb └── Settings.settings ├── NET Assembly Info ShellEx.vbproj ├── PropertyPage.Designer.vb ├── PropertyPage.resx ├── PropertyPage.vb ├── PropertySheet.vb ├── Resources ├── Copy.png ├── Save.png └── VisualStudio.ico ├── User-Controls └── TabControlFix.vb ├── app.config ├── bin ├── Debug │ ├── AssemblyInfo.dll │ ├── AssemblyInfo.pdb │ ├── SharpShell.dll │ ├── SharpShell.xml │ ├── System.Collections.Immutable.dll │ ├── System.Collections.Immutable.xml │ ├── System.Reflection.Metadata.dll │ ├── System.Reflection.Metadata.xml │ └── System.Runtime.dll └── Release │ ├── AssemblyInfo.dll │ ├── SharpShell.dll │ ├── System.Collections.Immutable.dll │ ├── System.Reflection.Metadata.dll │ └── System.Runtime.dll └── packages.config /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question---get-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/.github/ISSUE_TEMPLATE/question---get-support.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Docs/CHANGELOG.md -------------------------------------------------------------------------------- /Docs/Report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Docs/Report.txt -------------------------------------------------------------------------------- /Images/DevCase_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Images/DevCase_Banner.png -------------------------------------------------------------------------------- /Images/Paypal_Donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Images/Paypal_Donate.png -------------------------------------------------------------------------------- /Images/Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Images/Report.png -------------------------------------------------------------------------------- /Images/Tab1-Product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Images/Tab1-Product.png -------------------------------------------------------------------------------- /Images/Tab2-Build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Images/Tab2-Build.png -------------------------------------------------------------------------------- /Images/Tab3-Identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Images/Tab3-Identity.png -------------------------------------------------------------------------------- /Images/envato_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Images/envato_circle.png -------------------------------------------------------------------------------- /Images/github_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Images/github_circle.png -------------------------------------------------------------------------------- /Images/paypal_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Images/paypal_circle.png -------------------------------------------------------------------------------- /Inno-Setup/Output/NET Assembly Info.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/Output/NET Assembly Info.exe -------------------------------------------------------------------------------- /Inno-Setup/embedded/CompiledCode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/embedded/CompiledCode.bin -------------------------------------------------------------------------------- /Inno-Setup/embedded/InfoBefore.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/embedded/InfoBefore.rtf -------------------------------------------------------------------------------- /Inno-Setup/embedded/WizardImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/embedded/WizardImage.bmp -------------------------------------------------------------------------------- /Inno-Setup/embedded/WizardSmallImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/embedded/WizardSmallImage.bmp -------------------------------------------------------------------------------- /Inno-Setup/embedded/en.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/embedded/en.isl -------------------------------------------------------------------------------- /Inno-Setup/embedded/es.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/embedded/es.isl -------------------------------------------------------------------------------- /Inno-Setup/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/icon.ico -------------------------------------------------------------------------------- /Inno-Setup/install_script.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/install_script.iss -------------------------------------------------------------------------------- /Inno-Setup/{app}/AssemblyInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/AssemblyInfo.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/AssemblyInfo.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/AssemblyInfo.dll.config -------------------------------------------------------------------------------- /Inno-Setup/{app}/ServerRegistrationManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/ServerRegistrationManager.exe -------------------------------------------------------------------------------- /Inno-Setup/{app}/ServerRegistrationManager.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/ServerRegistrationManager.exe.config -------------------------------------------------------------------------------- /Inno-Setup/{app}/SharpShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/SharpShell.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/System.Buffers.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/System.Memory.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/System.Reflection.MetadataLoadContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/System.Reflection.MetadataLoadContext.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/System.Runtime.dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/Test Assemblies/.Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/Test Assemblies/.Readme.txt -------------------------------------------------------------------------------- /Inno-Setup/{app}/Test Assemblies/Dll (AnyCPU).dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/Test Assemblies/Dll (AnyCPU).dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/Test Assemblies/Dll (x64).dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/Test Assemblies/Dll (x64).dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/Test Assemblies/Dll (x86).dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/Test Assemblies/Dll (x86).dll -------------------------------------------------------------------------------- /Inno-Setup/{app}/Test Assemblies/WinExe (AnyCPU).exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/Test Assemblies/WinExe (AnyCPU).exe -------------------------------------------------------------------------------- /Inno-Setup/{app}/Test Assemblies/WinExe (AnyCPU, Prefer 32-Bit).exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/Test Assemblies/WinExe (AnyCPU, Prefer 32-Bit).exe -------------------------------------------------------------------------------- /Inno-Setup/{app}/Test Assemblies/WinExe (x64).exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/Test Assemblies/WinExe (x64).exe -------------------------------------------------------------------------------- /Inno-Setup/{app}/Test Assemblies/WinExe (x86).exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/Test Assemblies/WinExe (x86).exe -------------------------------------------------------------------------------- /Inno-Setup/{app}/uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{app}/uninstall.ico -------------------------------------------------------------------------------- /Inno-Setup/{commoncf}/Inno Setup/Carbon.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{commoncf}/Inno Setup/Carbon.vsf -------------------------------------------------------------------------------- /Inno-Setup/{commoncf}/Inno Setup/VclStylesinno.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{commoncf}/Inno Setup/VclStylesinno.dll -------------------------------------------------------------------------------- /Inno-Setup/{tmp}/WizardBitmaps/AuthorWebsiteCarbon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{tmp}/WizardBitmaps/AuthorWebsiteCarbon.bmp -------------------------------------------------------------------------------- /Inno-Setup/{tmp}/WizardBitmaps/AuthorWebsiteWhite.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{tmp}/WizardBitmaps/AuthorWebsiteWhite.bmp -------------------------------------------------------------------------------- /Inno-Setup/{tmp}/WizardBitmaps/FolderCarbon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{tmp}/WizardBitmaps/FolderCarbon.bmp -------------------------------------------------------------------------------- /Inno-Setup/{tmp}/WizardBitmaps/FolderWhiteClassic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{tmp}/WizardBitmaps/FolderWhiteClassic.bmp -------------------------------------------------------------------------------- /Inno-Setup/{tmp}/WizardBitmaps/FolderWhiteModern.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{tmp}/WizardBitmaps/FolderWhiteModern.bmp -------------------------------------------------------------------------------- /Inno-Setup/{tmp}/WizardBitmaps/StartMenuCarbon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{tmp}/WizardBitmaps/StartMenuCarbon.bmp -------------------------------------------------------------------------------- /Inno-Setup/{tmp}/WizardBitmaps/StartMenuWhiteClassic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{tmp}/WizardBitmaps/StartMenuWhiteClassic.bmp -------------------------------------------------------------------------------- /Inno-Setup/{tmp}/WizardBitmaps/StartMenuWhiteModern.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{tmp}/WizardBitmaps/StartMenuWhiteModern.bmp -------------------------------------------------------------------------------- /Inno-Setup/{tmp}/install_script.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Inno-Setup/{tmp}/install_script.iss -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SharpShell/Apex.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/Apex.WinForms.dll -------------------------------------------------------------------------------- /SharpShell/Apex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/Apex.dll -------------------------------------------------------------------------------- /SharpShell/ServerManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/ServerManager.exe -------------------------------------------------------------------------------- /SharpShell/ServerRegistrationManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/ServerRegistrationManager.exe -------------------------------------------------------------------------------- /SharpShell/ServerRegistrationManager.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/ServerRegistrationManager.exe.config -------------------------------------------------------------------------------- /SharpShell/SharpShell Easy Log.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/SharpShell Easy Log.exe -------------------------------------------------------------------------------- /SharpShell/SharpShell Easy Log.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/SharpShell Easy Log.exe.config -------------------------------------------------------------------------------- /SharpShell/SharpShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/SharpShell.dll -------------------------------------------------------------------------------- /SharpShell/SharpShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/SharpShell.xml -------------------------------------------------------------------------------- /SharpShell/ShellExtensionManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/SharpShell/ShellExtensionManager.exe -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx.sln -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/AssemblyInfo.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/AssemblyInfoFlags.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/AssemblyInfoFlags.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/IAssemblyCache.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/IAssemblyCache.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/NativeAssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/NativeAssemblyInfo.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/NativeMethods.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/NativeMethods.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/QueryAssemblyInfoFlags.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/ElektroKit/Interop/Win32/QueryAssemblyInfoFlags.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/My Project/Application.myapp -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/My Project/Resources.resx -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/My Project/Settings.settings -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/NET Assembly Info ShellEx.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/NET Assembly Info ShellEx.vbproj -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/PropertyPage.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/PropertyPage.Designer.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/PropertyPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/PropertyPage.resx -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/PropertyPage.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/PropertyPage.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/PropertySheet.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/PropertySheet.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/Resources/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/Resources/Copy.png -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/Resources/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/Resources/Save.png -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/Resources/VisualStudio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/Resources/VisualStudio.ico -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/User-Controls/TabControlFix.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/User-Controls/TabControlFix.vb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/app.config -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Debug/AssemblyInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Debug/AssemblyInfo.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Debug/AssemblyInfo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Debug/AssemblyInfo.pdb -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Debug/SharpShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Debug/SharpShell.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Debug/SharpShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Debug/SharpShell.xml -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Debug/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Debug/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Debug/System.Collections.Immutable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Debug/System.Collections.Immutable.xml -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Debug/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Debug/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Debug/System.Reflection.Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Debug/System.Reflection.Metadata.xml -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Debug/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Debug/System.Runtime.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Release/AssemblyInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Release/AssemblyInfo.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Release/SharpShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Release/SharpShell.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Release/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Release/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Release/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Release/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/bin/Release/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/bin/Release/System.Runtime.dll -------------------------------------------------------------------------------- /Solution/NET Assembly Info ShellEx/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElektroStudios/.NET-Assembly-Info-Shell-Extension-for-Windows/HEAD/Solution/NET Assembly Info ShellEx/packages.config --------------------------------------------------------------------------------