1. I am using VS2008 + Git extensions - Visual Studio and Shell Explorer Extensions for Git version 1.79 made by Henk Westhuis ( henk_westh...@hotmail.com ) The only problem I had was simillar to yuors. It is easily rectified by *not* using PuTTy. I switched to OpenSSH. I am pretty sure Tortoise has the same abbility to switch from PuTTy to OpenSSH ... Sometimes I switch to command line git And yes CRLF to LF issue remanins... 2. As I said on different thread I think Ant is an overkill, for such a simple project. It also requires installation of JDK, building it etc ... To make my life easier, I have made jquery.proj which is a standard makefile for msbuild.exe. msbuild is part of .net 2.0 and thus available "everywhere". Usually located here : C:\Windows\Microsoft.NET\Framework \v2.0.50727\msbuild.exe
I have spent 30 min on jquery.proj, but if John thinks it could/should be made part of jquery repository I can "improve" it. To use/run it just type msbuild in the folder where jquery.proj resides, which is the root of the jquery project. This will result in default build of jQuery. Or one can schoose different (usual) targets with /t:<target name>: msbuild /t:rebuild or msbuild /t:clean Currently jquery.proj is not calling git to pull in qunit and/or sizzle. Currently result is .../dist/dbjquery.js, to make a disctinction from .../dist/jquery.js NOTE: VS knows about proj files and one can execute do "open with..." msbuild on a proj file in the VS project, or web site. TBD: A:: use git to pull in qunit and sizzle B:: use "MS" Ajax minifier (http://aspnet.codeplex.com/Release/ ProjectReleases.aspx?ReleaseId=34488 )to do "release" build 3. Word of advice if I may. Do not use VisualStudio solution and/or pojects for this. First of all you will not be able to do it with Visual Studio express, since you will need "Web Deployment" add-on, second VS2008/2010 (which are also expensive) do not use msbuild.exe but devenv.exe . Third: csproj, vbproj files (if you think you can use empty c# or vb.net projects) are different enough from msbuilld documentation to drive you up the wall ... to use this properly one needs to build (in c#) custom tasks ... which makes all of this an even bigger overkill than using Ant. --DBJ -- You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to jquery-...@googlegroups.com. To unsubscribe from this group, send email to jquery-dev+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en.