You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
Currently to add all TagHelpers in an assembly you need to do @addtaghelper "MyAssembly". This should change to be less ambiguous to something like: @addtaghelper "*, MyAssembly". Same goes for @removetaghelper. This way the user is always specifying some sort of type name.
This also means adding support for * in the type name specification for @addtaghelper.
The text was updated successfully, but these errors were encountered:
NTaylorMullen
changed the title
@addtaghelper Should require type name and not just assembly name.
@addtaghelper and @removetaghelper should require type names and not just assembly names.
Jan 30, 2015
NTaylorMullen
changed the title
@addtaghelper and @removetaghelper should require type names and not just assembly names.
@addtaghelper and @removetaghelper should allow wild cards.
Jan 30, 2015
- @addtaghelper and @removetaghelper can now utilize the '*' wild card to represent 0 or more characters.
- Restricted the @addtaghelper to need the TypeName. @addtaghelper "MyAssemblyName" => @addtaghelper "*, MyAssemblyName".
#285
- @addtaghelper and @removetaghelper can now utilize the '*' wild card to represent 0 or more characters.
- Restricted the @addtaghelper to need the TypeName. @addtaghelper "MyAssemblyName" => @addtaghelper "*, MyAssemblyName".
#285
Currently to add all
TagHelper
s in an assembly you need to do@addtaghelper "MyAssembly"
. This should change to be less ambiguous to something like:@addtaghelper "*, MyAssembly"
. Same goes for@removetaghelper
. This way the user is always specifying some sort of type name.This also means adding support for
*
in the type name specification for@addtaghelper
.The text was updated successfully, but these errors were encountered: