Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
430 views

I execute this command dotnet ef dbcontext -v info And I get this answer: Finding DbContext classes in the project... Microsoft.EntityFrameworkCore.Design.OperationException: No DbContext was found ...
Alex161's user avatar
  • 63
0 votes
0 answers
164 views

We have converted our pipelines to use DotNetCoreCLI@2 tasks. I do not see a DotNetCoreCLI task to publish symbols for debugging. Is there an alternative task to PublishSymbols@2? The PublishSymbols ...
CBFT's user avatar
  • 312
0 votes
1 answer
442 views

I'm working on a project and I have two objects Group and ApplicationUser with a reference from Group to ApplicationUser. My Group model has a property CreatedBy to provide the info about the user who ...
KazKazar's user avatar
  • 161
2 votes
1 answer
2k views

I've added my private source of packages that hosted on gitlab by this command dotnet nuget add source its done successfully and added to my list of sources, then I've pushed my packages on it, the ...
Vahid's user avatar
  • 524
1 vote
0 answers
637 views

https://learn.microsoft.com/tr-tr/aspnet/core/mvc/views/view-compilation?view=aspnetcore-3.1&tabs=netcore-cli I followed that link. First i installed nuget package Project 'razorapp' has the ...
user avatar
0 votes
2 answers
681 views

Using dotnetcore cli the packages are being generated with a packagetype node, causing Visual Studio to not be able to install the package. Building the package on Visual Studio does not generate the ...
BrunoMartinsPro's user avatar
2 votes
1 answer
4k views

I want to know the exact dotnet cli commands that Visual Studio uses when I Build/Rebuild and Clean solution in my dotnet core application? I know that the dotnet core cli was build on top of msbuild ...
xargs's user avatar
  • 3,109
3 votes
2 answers
2k views

I'm trying to migrate my small OSS project from AppVeyor to Azure DevOps and got almost everything done but now getting this error on the dotnet restore step: NU1100: Unable to resolve 'System....
abatishchev's user avatar
2 votes
1 answer
54 views

I have written a small test tool namespace dotnet_cqsgen { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); File....
Anders's user avatar
  • 17.6k
0 votes
0 answers
124 views

I'm new to coding with c# and looking for a little help I have set up c# with visual studio code and in the terminal trying to use dotnet run but when i do it comes up with this: visual studio code ...
TheMagicMan's user avatar
55 votes
4 answers
70k views

I am trying to add a csproj to a sln using dotnet sln command line. Adding the project is easily achievable using the below command. dotnet sln todo.sln add todo-app/todo-app.csproj But how do I ...
Kishore Sahasranaman's user avatar
4 votes
1 answer
2k views

I have installed the dotnet core sdk and it all works. I want to update the nuget version though so that when I run dotnet pack it uses the latest nuget. With normal nuget.exe I can run nuget.exe ...
David Esteves's user avatar
0 votes
3 answers
3k views

I'm following the ASP.NET Core tutorials at https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-mvc-app/adding-model. I'm up to the Scaffolding a Controller section and I'm trying to create ...
James Ko's user avatar
  • 34.9k
4 votes
1 answer
1k views

I'm using dotnet to run my unit tests in xUnit. In one of my unit tests I get a Stackoverflow. How do I determine which unit test causes this? Project.json (relevant parts): "dependencies": { "...
Julian's user avatar
  • 37.3k
0 votes
1 answer
2k views

I'm doing a publish by using dot net core and I noticed all files contained in wwroot are copied the output folder, in my pre publish script I run tasks for concatenation, minification and uncss and ...
pedrommuller's user avatar
  • 16.1k