├── .gitattributes ├── .gitignore ├── ImageShrinker ├── App.xaml ├── App.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── WP_IconMaker.csproj ├── WP_IconMaker.ico ├── Window1.xaml ├── Window1.xaml.cs └── app.config ├── README.md └── WP_IconMaker.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/.gitignore -------------------------------------------------------------------------------- /ImageShrinker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/App.xaml -------------------------------------------------------------------------------- /ImageShrinker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/App.xaml.cs -------------------------------------------------------------------------------- /ImageShrinker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ImageShrinker/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ImageShrinker/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/Properties/Resources.resx -------------------------------------------------------------------------------- /ImageShrinker/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ImageShrinker/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/Properties/Settings.settings -------------------------------------------------------------------------------- /ImageShrinker/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/Properties/app.manifest -------------------------------------------------------------------------------- /ImageShrinker/WP_IconMaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/WP_IconMaker.csproj -------------------------------------------------------------------------------- /ImageShrinker/WP_IconMaker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/WP_IconMaker.ico -------------------------------------------------------------------------------- /ImageShrinker/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/Window1.xaml -------------------------------------------------------------------------------- /ImageShrinker/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/Window1.xaml.cs -------------------------------------------------------------------------------- /ImageShrinker/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/ImageShrinker/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/README.md -------------------------------------------------------------------------------- /WP_IconMaker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBurela/WindowsMarketplaceIconMaker/HEAD/WP_IconMaker.sln --------------------------------------------------------------------------------