├── App.config ├── Exceptions └── customIconPackException.cs ├── Extensions └── StringExtensions.cs ├── Forms ├── about.Designer.cs ├── about.cs ├── about.resx ├── cIPreferences.Designer.cs ├── cIPreferences.cs ├── cIPreferences.resx ├── customIcons_Form1.Designer.cs ├── customIcons_Form1.cs ├── customIcons_Form1.resx ├── iconPackStore.Designer.cs ├── iconPackStore.cs ├── iconPackStore.resx ├── iconViewerAndExtractor.Designer.cs ├── iconViewerAndExtractor.cs ├── iconViewerAndExtractor.resx ├── patchResourceIconFile.Designer.cs ├── patchResourceIconFile.cs └── patchResourceIconFile.resx ├── LICENSE ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Types ├── IconStorePack.cs └── customIconsManifest.cs ├── customIcons.csproj ├── customIcons.csproj.user ├── customIcons_TemporaryKey.pfx └── packages.config /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/App.config -------------------------------------------------------------------------------- /Exceptions/customIconPackException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Exceptions/customIconPackException.cs -------------------------------------------------------------------------------- /Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Forms/about.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/about.Designer.cs -------------------------------------------------------------------------------- /Forms/about.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/about.cs -------------------------------------------------------------------------------- /Forms/about.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/about.resx -------------------------------------------------------------------------------- /Forms/cIPreferences.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/cIPreferences.Designer.cs -------------------------------------------------------------------------------- /Forms/cIPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/cIPreferences.cs -------------------------------------------------------------------------------- /Forms/cIPreferences.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/cIPreferences.resx -------------------------------------------------------------------------------- /Forms/customIcons_Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/customIcons_Form1.Designer.cs -------------------------------------------------------------------------------- /Forms/customIcons_Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/customIcons_Form1.cs -------------------------------------------------------------------------------- /Forms/customIcons_Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/customIcons_Form1.resx -------------------------------------------------------------------------------- /Forms/iconPackStore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/iconPackStore.Designer.cs -------------------------------------------------------------------------------- /Forms/iconPackStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/iconPackStore.cs -------------------------------------------------------------------------------- /Forms/iconPackStore.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/iconPackStore.resx -------------------------------------------------------------------------------- /Forms/iconViewerAndExtractor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/iconViewerAndExtractor.Designer.cs -------------------------------------------------------------------------------- /Forms/iconViewerAndExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/iconViewerAndExtractor.cs -------------------------------------------------------------------------------- /Forms/iconViewerAndExtractor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/iconViewerAndExtractor.resx -------------------------------------------------------------------------------- /Forms/patchResourceIconFile.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/patchResourceIconFile.Designer.cs -------------------------------------------------------------------------------- /Forms/patchResourceIconFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/patchResourceIconFile.cs -------------------------------------------------------------------------------- /Forms/patchResourceIconFile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Forms/patchResourceIconFile.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/README.md -------------------------------------------------------------------------------- /Types/IconStorePack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Types/IconStorePack.cs -------------------------------------------------------------------------------- /Types/customIconsManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/Types/customIconsManifest.cs -------------------------------------------------------------------------------- /customIcons.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/customIcons.csproj -------------------------------------------------------------------------------- /customIcons.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/customIcons.csproj.user -------------------------------------------------------------------------------- /customIcons_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/customIcons_TemporaryKey.pfx -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customWin/customIcons/HEAD/packages.config --------------------------------------------------------------------------------