In my MVC project I have dynamic call like this in my Razor view:
@(Html.CombresLink("publicCss" + Model.PublicSkinName))
The string passed in might resolve to "publicCssFubar", for example.
If however the resource name in my Combres.xml config is called "publicCssFuBar" - notice the capitial B - then the example of "publicCssFubar" will fail with the exception of "Resource set 'publicCssFubar' cannot be found" in Combres.WebExtensions.GetResourceSet(string setName) +65"
Could it be changed to be case insensitive?
I'm using the nuGet package which says I'm on v2.2.2.5 of combres.mvc. I checked the version history since that release and there doesn't appear to be any indication of this being changed.
In my MVC project I have dynamic call like this in my Razor view:
@(Html.CombresLink("publicCss" + Model.PublicSkinName))
The string passed in might resolve to "publicCssFubar", for example.
If however the resource name in my Combres.xml config is called "publicCssFuBar" - notice the capitial B - then the example of "publicCssFubar" will fail with the exception of "Resource set 'publicCssFubar' cannot be found" in Combres.WebExtensions.GetResourceSet(string setName) +65"
Could it be changed to be case insensitive?
I'm using the nuGet package which says I'm on v2.2.2.5 of combres.mvc. I checked the version history since that release and there doesn't appear to be any indication of this being changed.