Issue I have Blazor WASM app that is ASP.Net hosted. When I try to debug the server app, Visual Studio does not launch the selected web browser. When I run the app (F5), the project builds, and VS goes into
Continue readingTag: asp.net-core
[SOLVED] Failed to restore nuget package vs 2019
Issue I have started project in dotnet 5 and visual studio 2022 and now try to open it on visual studio 2019 in other pc. But I get error when I want to restore packages. Retrying ‘FindPackagesByIdAsync’ for source ‘https://api.nuget.org/v3-flatcontainer/system.xml.xmlserializer/index.json’.
Continue reading[SOLVED] Which SignalR package to install for a .NET 6 server project?
Issue I have a NET6 project which is built part of a larger .NET 6 ASP.NET solution. The project still references: Microsoft.AspNetCore.SignalR, and Microsoft.AspNetCore.SignalR.Core Which have now been marked as deprecated. What packages do I need to install for their
Continue reading[SOLVED] .NET Core copy subfolders to output on build and publish
Issue I have a Microsoft.NET.Sdk.Web project and in the solution folder I have a Lib folder with subfolders which in turn have files, for example: Lib sv myfile.dll de myfile.dll I added the following to the csproj: <ItemGroup> <Content Include="Lib\sv\**">
Continue reading[SOLVED] Why I get this broken Bootstrap carousel in the VStudio 2019 standard project template?
Issue When I create a new Web MVC project in VisualStudio 2019 (v16.11) I get this strange effect on carousel buttons. In particular, they are shaded and bordered. I’ve checked, Visual Studio is using Bootstrap v4.3.1 in this template. Down
Continue reading[SOLVED] Visual Studio w/Docker has exited with code 4294967295 (0xffffffff)
Issue On our new company laptops we are running into issues running containers in docker desktop from visual studio. We tried a bunch of things which were unsuccessful. Any help / thoughts would be great as we are running out
Continue reading[SOLVED] Dynamic menu in Layout page (Razor pages)
Issue I have a problem and couldn’t find a solution. I am developing a site in Visual Studio 2022, ASP.NET Core 6.0 Razor pages. (not MVC) I made a database drived (MSSQL) dynamic menu for the navigation. I made this
Continue reading[SOLVED] Reason for publishing error "could not find a part of the path" in VS19 (Errors: MSB3027, MSB3021)?
Issue There are several questions posted about this, but I tried many of the solutions and it did not fix my issue. The issue is when I publish my ASP.NET Core 2.2 project, I get this error (formatted for easier
Continue reading[SOLVED] How to create ASP.NET Core MVC project in Visual Studio with pre installed NuGet packages and Data folder
Issue I had created ASP.NET 6.0 Core Web App MVC project VS a few weeks back. The generated project files looked like this with pre installed NuGet packages Now when I create the project the same way I am missing
Continue reading[SOLVED] Do I need a separate Web Site in IIS for my ASP.NET Core Web API project and my Angular project?
Issue How can I host the published result of this simple tutorial in IIS? Is there guidance on how best to accomplish this? The solution contains an ASP.NET Core Web API project (backend) and an Angular project (front-end). It works
Continue reading