File tree 1 file changed +6
-4
lines changed
launcher-csharp/eSignature/Controllers
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -51,19 +51,21 @@ protected virtual void InitializeInternal()
51
51
}
52
52
53
53
public dynamic CreateSourcePath ( )
54
- {
54
+ {
55
55
var uri = Config . githubExampleUrl ;
56
56
if ( ControllerContext . RouteData . Values [ "area" ] != null )
57
57
{
58
58
uri = $ "{ uri } /{ ControllerContext . RouteData . Values [ "area" ] } ";
59
+ return $ "{ uri } /Controllers/{ this . GetType ( ) . Name } .cs";
59
60
}
60
- if ( EgName == "eg001" )
61
+ else if ( this . EgName != "eg001" ) // eg001 is at the top level
61
62
{
62
- return $ "{ uri } /launcher-csharp/{ this . GetType ( ) . Name } .cs";
63
+ uri = $ "{ uri } /eSignature";
64
+ return $ "{ uri } /Controllers/{ this . GetType ( ) . Name } .cs";
63
65
}
64
66
else
65
67
{
66
- return $ "{ uri } /launcher-csharp/eSignature/Controllers/ { this . GetType ( ) . Name } .cs";
68
+ return $ "{ uri } /{ this . GetType ( ) . Name } .cs";
67
69
}
68
70
}
69
71
You can’t perform that action at this time.
0 commit comments