Search Results

3
votes
2answers
581 views

Cannot find Microsoft.VisualStudio.TextTemplating assembly

I am doing some work with T4 (Text Template Transformation Toolkit) and am trying to get to a point where I can create my own custom text template host. However, all of that relies on the M …
0
votes

Design for handling both forms authentication and active directory

To answer your design pattern question. On a project that had a similar situation (using two different systems for authentication), we used the …
1
vote

How do I use .Net reflection to search for a property by name ignoring case?

Try adding the scope BindingFlags like so: var prop = Backend.GetType().GetProperty(fieldName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase); …