Removing unused assembly references wouldn't change anything apart from cleaning your projects. When you add assembly references or make use of the 'using' keyword the compiler will ignore any assembly which you have not actually made use of in your code. Thus, if you were to set a reference to System.Data.dll and System.Windows.Forms.dll but only authored the following code:
using System;
using System.Data;
// Ignored.
using System.Windows.Forms; // Ignored.
public class MyClass
{
public static void Main()
{
Console.WriteLine("Hi there.");
}
}
the compiler would only reference the mandatory mscorlib.dll
