How to place appsettings.json in RCL project to be consumed by Configuration of blazor wasm app
I have a strategy to share App.razor from RCL project with Blazor hosting apps like Blazor Webassembly standalone app as a front-end app and Blazor hybrid apps as native apps. I placed all assets into a RCL project(RCL) including appsettings.json file in…
realtime update
I have a service, that is uploading to firestore async Task LoadOrInitializeTurbineAsync() { var turbinesRef = _firestoreDb!.Collection(collectionName); var snapshot = await turbinesRef.GetSnapshotAsync(); if (snapshot.Count ==…
Why is the blazor css isolation not working?
I have an AppLogin.razor component and its css file is AppLogin.razor.css. They are working fine. I have a UserLogin.razor component and its css file is UserLogin.razor.css. The working mechanism is as follows When you login from the AppLogin.razor…
Why is the blazor css isolation not working?
I have an AppLogin.razor component and its css file is AppLogin.razor.css. They are working fine. I have a UserLogin.razor component and its css file is UserLogin.razor.css. The working mechanism is as follows When you login from the AppLogin.razor…
Why do clients calling a grpc server via named pipes which is hosted in a windows service require admin rights?
I have a grpc service which uses named pipes, it is hosted in a Windows service. If my client is running with admin rights it is able to call the service otherwise it fails with an UnauthorizedAccessException. This is a replacement for an old WCF service…
Bundle and Minify functionality not working on Enterprise Visual Studio
I am unable to minify my css and js files in a visual studio c# .net core web app project. I am also unable to launch the minify context menu on against a target file. I have installed BundlerMinifier.Core nuget package version 3.2.449 but it is not…
How to get a particular column from table and display in in label and not in the list in sqlite database in mvvm model
In MVVM model using async connection, I want to retrieve just one column from my async table to a label not to list. all sample I am seeing put all column in the list . I want only one mesa1 column to be displayed in a label.text. public async Task
Creating List of Input Using Model and HtmlHelper
Hello everyone and thanks for the help in advance. I want to create a from that utilizes a list of input text boxes that corresponds with a model of a database table. The controller accepting the input expects a List<tblData> which in turn…
Where is system.device.location?
I am trying to use the GeoCoordinateWatcher in my WPF application. Whenever I type the using statement "using System.Device.Location" I am told it does not exist. I have read that I have to add it as a reference but when I go to the list of…
Microsoft.SqlServer.XEvent.XELite does not disconect when server is unreachable
We are using Microsoft.SqlServer.XEvent.XELite with ReadEventStream to read extended events from our servers. We have a .net code that gets the events for processing and storage. We have an issue where, while we have the connection open, the server may…
Getting "We couldn't sign you in" error after signing into .NET Core web app using Azure authentication
I'm trying to retrofit Azure authentication into a .NET Core v8 web application. I'm using this tutorial: https://learn.microsoft.com/en-us/entra/identity-platform/tutorial-web-app-dotnet-call-api?tabs=visual-studio%2Cdotnet6 I have an application set up…
How to fix .NET 4.6 application pool crash on Windows Server 2022
We recently upgraded our Windows Server from 2012 to 2022. We are now experiencing App Pool crashes with IIS hosted applications running .NET 4.6. The crashes require us to stop the application pool, terminate the w3wp.exe task manually for that…
Xamarin support for Android API 34 (14)
Hi I have a project and trying to update to API 34 with no luck even I create a blank project (Start new project with basic hello world template) also giving me the same error. Here is the error The TargetFrameworkVersion (Android API level 33) is lower…
NFC plugin or library for .NET Maui Android?
I've tried all or most of the proposed solutions on the web to try and to get NFC to work in .NET Maui, and it is such a pain. The app that I need to build is not big, a login page, a barcode scanner page, and then an NFC page. I have the first 2 working…
I am getting the below error while trying to build a project in Visual Studio
Severity Code Description Project File Line Suppression State Error MSB4018 The "GenerateDepsFile" task failed unexpectedly. System.IO.FileNotFoundException: Could not load file or assembly 'System.Text.Json, Version=6.0.0.0, Culture=neutral,…
error ASPCONFIG: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level, when adding <hostingEnvironment shadowCopyBinAssemblies="false" /> in web.config file.
I've an azure cloud service web role project. In the csproj file I have the pre-compilation steps to basically pre-compile the asp.net application and generate app_*.dll's. Now I've to add <hostingEnvironment shadowCopyBinAssemblies="false"…
error ASPCONFIG: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level, when adding <hostingEnvironment shadowCopyBinAssemblies="false" /> in web.config file.
I've an azure cloud service web role project. In the csproj file I have the pre-compilation steps to basically pre-compile the asp.net application and generate app_*.dll's. Now I've to add <hostingEnvironment shadowCopyBinAssemblies="false"…
can I use c++ to develop xamarin.android?
can I use c++ to develop android application ? and I know I can not use .net library. but I just wonder If I can use c++ to developt it.
MSIS7012 : The same client browser session has made '6' requests in the last '1' seconds. Contact your administrator for details
We have a .Net application which we implemented ADFS WSFED in it. Its working fine in local but when we deployed we are facing this error. For Dev in URL I see Realm is HTTPS but wreply is HTTP. But for local I see Realm is HTTPS but wreply is HTTPS.…
Using ML.NET for Predicting Hourly User Session Counts
I am new to AI/ML and need assistance with a business scenario that involves machine learning, specifically using ML.NET as our preferred technology. We have collected hourly user session count data per country for the last year through log analytics.…