I want to minify my js and css through command prompt using ajaxmin. Can someone provide the link for this. This https://archive.codeplex.com/?p=ajaxmin does not have the exe
Asked
Active
Viewed 3,699 times
3 Answers
4
In case anyone needs it, you can download the installer or portable from here.

Ernest Marcinko
- 405
- 3
- 12
2
The source code and binary releases are now available on Microsoft's GitHub repo.
Microsoft Ajax Minifier v5.14 is available to download from here: https://github.com/Microsoft/ajaxmin/releases/tag/v5.14
The zip archive release contains a "AjaxMinSetup.msi" file, which will install the "AjaxMin.exe" in your Program Files folder.

leekelleher
- 427
- 1
- 4
- 12
1
Ok. Here is what I did:
- npm install uglify-es -g
- uglifyjs File.js --mangle --compress --verbose --warn --timings --output minfiedFile.min.js

Dilip
- 191
- 4
- 17