how to disable "missing xml comment…" warning? – Asp.net
I add swagger to my asp.net project. there are a lot of warnings the warning code is blank. so I cannot disable it through 1591. please help me
I add swagger to my asp.net project. there are a lot of warnings the warning code is blank. so I cannot disable it through 1591. please help me
I have a list which has following result set . public class PrExport { public string pId { get; set; } public string prName { get; set; } public string hId { get; set; } public string hName { get;…
It is my first attempt to run a docker image in my asp.net core 5.0 application. I have added the following configuration in the docker file. FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS base WORKDIR /app EXPOSE 80 EXPOSE 443 FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build…
I'm trying to run a dotnet webapp project in visual studio. When I run pops up a powershell window and it's saying that my application is running on https://localhost:5000 or localhost:5001. But when I try to access it appears: this…
Consider the following program: #include <stdio.h> int main(void) { printf("hello worldn"); return 0; } If I build it with GCC, optimizing for size, and with static linking, and then strip it for further size minimization (maybe): $ gcc -Os -static…
I'm working on a .NET Framework 4.5.2 legacy application. I need the plain ConnectionString of my application, but I don't know how to read it. Unfortunately the Web.config file of the app, does not have a section "connectionStrings". Instead, in…
I am on an Intel chip Mac. When I do dotnet run, I expected the table Player to be created, and the data to be seeded from ApplicationDbContext.cs. I see the table being created, but no data inserted. My implementation…
I am new at C# ASP.Net Entity Framework . I am trying to build an API and I want to produce an output like this : [ { "userId": 1275, "username": "dmartin", "email": "[email protected]", "firstName": "Dan", "middleInitial": "", "lastName": "Martin",…
I want to add Authentication with GitHub to my Asp Net Core 6 project, but everything I find in the Internet is for older versions of Asp Net. How can I add it? I added the Microsoft.AspNetCore.Authentication.OAuth package to my…
I am deploying an application as a self contained win-x64 application. Doing this generates an .exe that will be used to start the application on the client machine, however I need to have the "Product Version" and the "File Version"…