Example for Asp.Net Core with own controllers
See original GitHub issueHi,
I’m trying to use your tool in a project that also hosts some controllers, but I’m having no luck. I’m probably doing something wrong, but if you could give me a hint I’ll be grateful.
I have an Asp.Net Core 2.1 web api project, that exposes a couple of controllers. This project also starts the scheduler, and should include your management tool. The problem is, when I add it, I just can see the initial page but nothing from your Content folder (styles, scripts…) is loaded. And besides that, navigation doesn’t work either.
Thanks in advance
Edit: I’m looking for a similar way to deploy it than CrystalQuartz, that just adding app.UseCrystalQuartz(() => scheduler)
, it deploys the web in /quartz
path
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:11
Top Results From Across the Web
Part 2, add a controller to an ASP.NET Core MVC app
In Solution Explorer, right-click Controllers > Add > New File. Select ASP.NET Core and Controller Class. Name the controller ...
Read more >Controllers in ASP.NET Core MVC
In this article, I am going to discuss Controllers in ASP.NET Core MVC application. A controller is a class having a set of...
Read more >Handle requests with controllers in ASP.NET Core MVC
A controller is used to define and group a set of actions. An action (or action method) is a method on a controller...
Read more >Controllers in ASP.NET Core
Controllers are stored inside the Controllers folder in the root of the app. They are basically C# classes whose Public methods are called...
Read more >Controllers in ASP.NET MVC
Controller and its action method handles incoming browser requests, retrieves necessary model data and returns appropriate responses. In ASP.NET MVC, every ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@pigiax 👋
You can find sample here. Everything is mostly explained there.
@pigiax Nope, I only have it in a private project. I can probably create an example repo when I catch some time.