Skip to content

Commit c27bb0a

Browse files
Refactor Web API route parsing into core library
1 parent 6ca55f2 commit c27bb0a

16 files changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright (c) .NET Foundation and contributors. All rights reserved.
2+
3+
using Asp.Versioning.Routing;
4+
using System.Runtime.CompilerServices;
5+
6+
[assembly: TypeForwardedTo( typeof( IBoundRouteTemplate ) )]
7+
[assembly: TypeForwardedTo( typeof( IParsedRoute ) )]
8+
[assembly: TypeForwardedTo( typeof( IPathContentSegment ) )]
9+
[assembly: TypeForwardedTo( typeof( IPathLiteralSubsegment ) )]
10+
[assembly: TypeForwardedTo( typeof( IPathParameterSubsegment ) )]
11+
[assembly: TypeForwardedTo( typeof( IPathSegment ) )]
12+
[assembly: TypeForwardedTo( typeof( IPathSeparatorSegment ) )]
13+
[assembly: TypeForwardedTo( typeof( IPathSubsegment ) )]
14+
[assembly: TypeForwardedTo( typeof( RouteParser ) )]

0 commit comments

Comments
 (0)