rss
twitter
  •  

Installing Subversion Source Control on WINDOWS

| Posted in Uncategorized |

0

http://www.devx.com/codemag/Article/38974

http://ale.riolo.co.uk/2007/01/how-to-install-subversion-14x-with.html

http://d3planet.com/rtfb/2009/12/02/windows-server-2008-and-subversion-over-https/

http://www.west-wind.com/presentations/subversion/

Trac Project…How to Install on WINDOWS

| Posted in Uncategorized |

0

http://trac.edgewall.org/wiki/TracInstall#MandatoryDependencies

http://geekswithblogs.net/twickers/archive/2010/02/02/137766.aspx

VisualSVN Source Control

| Posted in Uncategorized |

0

this is great video illustrate how you can use VisualSVN as your source control

http://www.visualsvn.com/visualsvn/demo/

http://visualsvn.com/visualsvn/download/

Visual Studio 2010 Product Registeration

| Posted in Uncategorized |

0

follow this link to register visual studio 2010 http://www.microsoft.com/express/support/regins/

Assembly Qualified Name…Get It

| Posted in .Net Framework, C# |

0

before we start to know how we can get the qualified name of the assembly, let’s define first assembly ”Assemblies are the building blocks of .NET Framework applications; they form the fundamental unit of deployment, version control, reuse, activation scoping, and security permissions. An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality“ and assembly content

Assembly Content

then let’s define Global Assembly Cache :The global assembly cache stores assemblies specifically designated to be shared by several applications on the computer. Now, we can write code using reflection to can get the Fully Qualified Name of assembly”

public static void Main(){
        Type t = typeof(System.Data.DataSet);
        string s = t.Assembly.FullName.ToString();
        Console.WriteLine("The fully qualified name {0}.", s); }
My Source: http://msdn.microsoft.com/en-us/default.aspx