Tell if an EnvDTE.Project is a Web Application May 31, 2013Munir HusseiniNo Comments A Visual Studio Extension or Add-In might need to know whether or not a project is a web application (in…
Write To Visual Studio’s Error List May 30, 2013Munir Husseini1 Comment When you’re developing an extension for Visual Studio, you might want to add errors, warnings or messages to Visual Studio’s…
Manually Applying XML Document Transform (XDT) May 29, 2013Munir HusseiniNo Comments There might be situations where you might want to execute XDT of a web.config or app.config “manually” (i.e. apply the…
Get Project References From EnvDTE.Project May 29, 2013Munir HusseiniNo Comments Suppose you’re developing a Visual Studio Extension and need to enumerate the references of a Visual Studio project. Here is…
Automatically Re-Create Stored Procedures In SQL Server May 22, 2013Munir HusseiniNo Comments One day I discovered that the system table sysdepends in my database was not valid. I know that dropping and…
A Flexible And Convenient Type Conversion Helper in C# May 21, 2013July 30, 2020Munir HusseiniNo Comments Every once in a while I need to convert objects of an unknown type into a known type; sometimes these…
Listing Objects Used in Stored Procedures (MS SQL) May 21, 2013Munir HusseiniNo Comments Recently, I had to clean up a large data base. Some of the tables in that database were obsolete and…