Posts

Showing posts from October, 2011

Migrating from Subversion to Mercurial

This is an alternative way of migrating from SVN to Mercurial using HgSubversion as oppose to using convert extension. It allows you to push changes from local Mercurial repository to both Subversion and Mercurial during the transition period. Install HgSubversion hg clone http://bitbucket.org/durin42/hgsubversion/ <local-path>\hgsubversion Add HgSubversion extension to your main hgrc file [extensions] hgsubversion = <local-path>\hgsubversion\hgsubversion Clone existing subversion repository hg clone http://<username >@<svn-project-path> <local-project-folder> Edit project .hgrc file (/hg/.hgrc) [paths] default = http://<username >@<hg-remote-project-path> svn = http://<username >@<svn-project-path> Create new mercurial project in your remote Hg repository (see Rhodecode ) Pushing the project to remote mercurial repository hg push Pushing to subversio

Save window size & position in WPF

* Right Click on Settings.settings and Open With XML (Text) Editor * Add Top, Left, Height, Width & WindowState settings < Settings > < Setting Name = "Top" Type = "System.Double" Scope = "User" > < Value Profile = "(Default)" > 50 </ Value > </ Setting > < Setting Name = "Left" Type = "System.Double" Scope = "User" > < Value Profile = "(Default)" > 50 </ Value > </ Setting > < Setting Name = "Height" Type = "System.Double" Scope = "User" > < Value Profile = "(Default)" > 800 </ Value > </ Setting > < Setting Name = "Width" Type = "System.Double" Scope = "User" > < Value Profile = "(Default)" > 1200 </ Value > </ Setting > < Setting Name = "WindowSta