sebastienros / fluid

Fluid is an open-source .NET template engine based on the Liquid template language.
MIT License
1.37k stars 174 forks source link

Question Semi Issue #490

Open ronfcodes opened 2 years ago

ronfcodes commented 2 years ago

I have an application that I have been using in fluid in I attempted to updated to the latest version and there are some breaking changes. Hopefully I can resolve those 1 by 1 but the the bigger issue is that my page is no longer loading. I am coming from version 2.0.7. I slowly walked the versions up and at version 2.1.0 is when it occurs that the pages no longer load. I tried to go through the repository of changes and also view the documentation but I'm not seeing anything specific. I'm assuming that it's around the parsing that maybe there is a change that I have to make but I'm not seeing anything. Is there any thing you are aware of that changed from 2.0 to 2.1 that would causes an issue?

lahma commented 2 years ago

I suggest you try enabling pause on all exceptions in your debugger settings and try to run you application under debug. That might reveal what is happening under the hood. Of course a minimal repro might help also.

ronfcodes commented 2 years ago

@lahma thanks, just to be clear this is a .net core application. There is no exception being thrown on server side. There is nothing being displayed in console of the application. Is there some other debugging you are referring to?

lahma commented 2 years ago

It might be helpful to create a small sample application that would show the missing output, really hard to say otherwise.

ronfcodes commented 2 years ago

Ok, that will take a few days, I have other changes to make to make other changes to the project after updating other packages.

ronfcodes commented 2 years ago

Attached is a sample project. If you update the fluid.mvcviewengine package to the latest version the page will be blank vs running it at the current version.

FluidCoreSample.zip

ronfcodes commented 2 years ago

Checking back to see if there are any suggestions in resolving the issue?