Tagged Questions
0
votes
0answers
4 views
How prevent CSSTidy from removing the *property IE7 Hack?
Using Visual Studio 2010 Post-Build Events, I'm currently working to reduce our CSS/JS framework by merging and minifying the files into .min for production when building the solution/project.
For ...
1
vote
1answer
29 views
Referencing Minified Content in Asp.Net / MVC
We have dozens of scripts referenced in our web pages (MVC).
To optimize the site if i minify and merge all scripts into one file , do i need to update those dozen references in each webpage with ...
0
votes
1answer
241 views
VS2010 Automatically rebuild minified .js/.css files
Problem:
I have been trying to integrate minification of javascript and css files in our VS2010 (.net 4.) projects. From what I hear, .net 4.5 and VS2012 will have minification build into the editor, ...
5
votes
2answers
2k views
Automatically minify JavaScript files at the time of Publishing website in Visual Studio 2010 or 2012?
Is there any way in VS 2010 or 2012 to minify JavaScript files at the time of Publishing means I want automatically minify js files.any good example for compression I am not using MVC
1
vote
3answers
243 views
Dealing with CSS/JS Minification in Visual Studio Build
I have an asp.net website and I would like to add css/js minification. The environment is Visual Studio/TFS and the web application is deployed to Azure using VS azure package. How do I add ...
0
votes
1answer
152 views
Tool to minify java script using a build order
I have some Javascript files I would like to minify and combine into one file. However since the order they appear is essential to the site not crashing. The simple solution would be to number them, ...
6
votes
6answers
1k views
compressing .js and .css files on push of the website
I am not even sure if something like I want is possible, so I am asking you guys to just let me know if anyone did that before. So, my goal is to when I click on "Publish" website in VS2010, to have ...
1
vote
2answers
300 views
Can I use YUI compressed when building ASP.NET projects in VS2010
I want to minify java script files in my vs2010 web app ASP.NET solution. I know that YUI compressor can do it pretty well on its own. So I was wondering if I can do the following:
I have all JS ...
2
votes
3answers
469 views
Can I minify JavaScript or aspx code in Microsoft Visual Studio 2010
I'm developing a web app using C# and MS VS 2010 IDE. The project has several of my own .js files in the Scripts folder that are designed to run on a client-side browser. While writing them I gave ...
2
votes
1answer
3k views
Minify CSS and JS in Asp.Net when Publish a WebApplication
I use Asp.net 4 C# and MicrosoftAjax Minifier.
Please look at my code here; Using <Target Name="AfterBuild"> I'm able to minify all files .js and .css. The problem is that this code minify even ...
10
votes
3answers
1k views
Minify JavaScript and Attach Version Number using VS2010
I have a few goals I'd like to achieve but I'm unsure of how to get there:
Create a single-click deployment for my web project that includes a minified javascript file
Version my minified JavaScript ...
0
votes
1answer
1k views
Setting Visual Studio to automatically minifying using Ajax Minifier
I use VS 2010 I would like at the pressing of Build Button have all CSS and .JS files minified.
Following this article all is working great for JS... adding some extra code for the CSS (pasted below) ...
1
vote
3answers
280 views
Combing CofeeScript output files and minimizing them in Visual Stuido 2010
I am using WorkBench to create CoffeScript files in VS2010. IS there a way I can combine the compiled js files into 1 file and minimize that file to include in my view?
3
votes
4answers
653 views
Strategy for JavaScript files on Azure
I am working on a strategy for storing and deploying JavaScript files on Azure (ASP.NET web role)
My requirements are:
To use minified versions in production
Use original versions (i.e. not ...
1
vote
2answers
114 views
Getting started: JavaScript and Styles compression
Let me start out by saying that I am a compression noob so bare with me.
I understand the basic principles of script/style compression. What I would like to know is how do I integrate ...
1
vote
2answers
2k views
Compress CSS/JavaScript before publish/package
I've been reading this post about minifying and compressing static files like CSS/JS within the publish/package event in VS2010.
I wonder if it also is possible to combine the files to one CSS file ...
11
votes
4answers
3k views
Needed - Visual Studio Custom Build Actions To Minify JS and CSS
I've been using Combres in my applications to compress, combine and minify my javascript and css at run time. This works extremely well and satisfies YSlow perfectly.
Now I'm rethinking the whole ...
4
votes
1answer
3k views
individually minify JS and CSS in Visual Studio 2010
I'm currently migrating a project to Visual Studio 2010 and am trying to figure out how to minify JS and CSS files individually on build.
In Visual Studio 2008 I used a Web Deployment Projects with a ...