Base solution for your next web application

Activities of "joe704la"

I think I may have found an answer to my own question. But I won't be able to verify it until much later. Incase anyone else has tried it let me know if this has worked for others.

Use the following task in the release pipeline to swap out variables in Json files. https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/file-transform?view=azure-devops

I am using Angular version on 8.1.0. .NET Core 3.1

I am trying to figure out how to setup an automated release and have it not overwrite my appconfig.production.json. I also am trying to setup a test site for QA purposes but not sure how I can make sure the correct config files are within the automated builds and releases as it just overwrites the files once it pushes the release.

Any help would be great. Thank you

@ricavir did you figure out a good ci/cd pipline for this?

I am looking into doing the same.

I see there may be some limitations to .NET Core 3 and I wanted to verify this since I had to revert my update back down since It broke almost all of my APIs. Are their any workarounds people have found for now?

After reading the below issue it states "The problem I found was that the IApiDescriptionGroupCollectionProvider would be blocked when there were complex types in the parameters or return types of the dynamic api."

This seemed to be the case in my situation as I saw in most cases I had issues I had complex types in the parameters. Example. Code like this didn't work anymore after upgrade to .NET Core 3 var numberOfAppointments = await _appointmentRepository.GetAll() .Where(a => a.UserId == user.Id && DateTime.Compare(Clock.Now, a.StartDateTime) > 0).CountAsync();

If I Removed && DateTime.Compare(Clock.Now, a.StartDateTime) > 0 from the query then it worked just fine.

https://github.com/aspnetboilerplate/aspnetboilerplate/issues/5026#issuecomment-554157095

I am having very similar issues on all my custom services after the upgrade to 8.0.0 and haven't figured out what the true issue is. @mujthabagroad I am not following how you fixed it. Can you give me any advice?

I have having issues in almost every service. But I can give an example below of one query that is causing an issue that didn't before the .NET Core 3 update. If I remove the "&& DateTime.Compare(Clock.Now, a.StartDateTime) > 0" it then seems to work. SO it seems like a simular issue to https://github.com/aspnetboilerplate/aspnetboilerplate/issues/5026#issuecomment-554157095 talking about here.

var numberOfAppointments = await _appointmentRepository.GetAll() .Where(a => a.UserId == user.Id && DateTime.Compare(Clock.Now, a.StartDateTime) > 0).CountAsync();

This would work with the chat function built into ASP.NET Zero?

Hi I am trying to figure out a good way to extend the chat feature to allow a user chat with a certain group of users so that the group of users when on line will see the same chat string as the other chat users. SO basically a 1 user > Chat Group chat string.

Does anyone have any advice on this or has anyone possibly implemented this yet, that maybe could share?

I followed enio suggestion of switching all angular packages from ^8.0.0 to ~8.0.0. This works as a temporary solution. But it for sure seems to be an issue with angular 8.1.

I am having the same issue. I have confirmed both my yarn.lock shows using angular 8.0.0 same with the package.json versions. Any updates on this?

Okay thank you

Showing 11 to 20 of 246 entries