Closed BrennanConroy closed 7 years ago
~~Remember, trackAllCaptures is part of the back reference feature https://github.com/aspnet/BasicMiddleware/blob/89a6f453ce5eb85a0c41cf3153d8f790a5fa2103/src/Microsoft.AspNetCore.Rewrite/Internal/IISUrlRewrite/UrlRewriteFileParser.cs#L133~~
The correct name is trackAllCaptures
not trackingAllCaptures
https://github.com/aspnet/BasicMiddleware/blob/89a6f453ce5eb85a0c41cf3153d8f790a5fa2103/src/Microsoft.AspNetCore.Rewrite/Internal/IISUrlRewrite/RewriteTags.cs#L24
BackReference
uses RegularExpressions.GroupCollection
which doesn't have additive operators, so we'll have to change the structure used to contain the back references.
@mikaelm12 Let's fix the enum name in 1.1. And investigate the back referencing issue. If the potential fix for that is not breaking, we can do it in 1.2 instead.
Okay. I changed the enum in https://github.com/aspnet/BasicMiddleware/pull/166 This bug should be moved to 1.2 though
e.g.
@mikaelm12