by ds | Jun 26, 2012 | C# .Net
By default, the Infragistics Version Utility does not upgrade the assemblies of your VS .Net project or solution from CLR 2.0 to 4.0 automatically. But you can do this via the “custom upgrade” link. In my case, I always got errors like No matching assembly...
by ds | Jun 25, 2012 | C# .Net
If you published new version of your ClickOnce / .Net project (C#, VB, …) and want to go back to a previous version, follow these steps: Open the directory where you deployed your project Go into the subdirectory “Application Files” and into the...
by ds | May 10, 2012 | C# .Net
string principal = "meow"; //Windows Username string filter = string.Format("(&(ObjectClass={0})(sAMAccountName={1}))", "person", principal); string domain = "domainname.local"; string[] properties = new...