File tree 6 files changed +9
-9
lines changed
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 4
4
namespace web . Controllers
5
5
{
6
6
[ Get ( "/" ) ]
7
- public class HomeController : Controller
7
+ public class HomeController : Controller2
8
8
{
9
- public override ControllerResponse Invoke ( ) => StatusCode ( 200 ) ;
9
+ public ControllerResponse Invoke ( ) => StatusCode ( 200 ) ;
10
10
}
11
11
}
Original file line number Diff line number Diff line change 4
4
namespace web . Controllers
5
5
{
6
6
[ Post ( "/user" ) ]
7
- public class UserController : Controller
7
+ public class UserController : Controller2
8
8
{
9
- public override ControllerResponse Invoke ( ) => StatusCode ( 200 ) ;
9
+ public ControllerResponse Invoke ( ) => StatusCode ( 200 ) ;
10
10
}
11
11
}
Original file line number Diff line number Diff line change 4
4
namespace web . Controllers
5
5
{
6
6
[ Get ( "/user/{id}" ) ]
7
- public class UserIdController : Controller
7
+ public class UserIdController : Controller2
8
8
{
9
- public override ControllerResponse Invoke ( ) => Content ( RouteParameters . id ) ;
9
+ public ControllerResponse Invoke ( string id ) => Content ( id ) ;
10
10
}
11
11
}
Original file line number Diff line number Diff line change 6
6
7
7
var app = builder . Build ( ) ;
8
8
9
- app . UseSimplifyWeb ( ) ;
9
+ app . UseSimplifyWeb ( true ) ;
10
10
11
11
app . Run ( ) ;
12
12
Original file line number Diff line number Diff line change 1
1
framework :
2
2
website : web.simplifynet.dev
3
- version : 4.7
3
+ version : 5.0
Original file line number Diff line number Diff line change 4
4
<ImplicitUsings >enable</ImplicitUsings >
5
5
</PropertyGroup >
6
6
<ItemGroup >
7
- <PackageReference Include =" Simplify.Web" Version =" 4.7 .*" />
7
+ <PackageReference Include =" Simplify.Web" Version =" 5.0 .*" />
8
8
</ItemGroup >
9
9
</Project >
You can’t perform that action at this time.
0 commit comments