LINQ2Vodka
LINQ2Vodka

Reputation: 3036

No DLLs/EXEs produced in the /bin when building in Visual Studio

I'm not newbie in programming but run into some trouble that I can't fix for 2+ hours. I have a solution of 8 projects - 1 is ASP.NET Core (.net framework) web application, 7 are service libraries. All this worked fine until today.

I don't know what I did wrong - just was making some updates on controller actions etc as I've been doing many and many days before. After some point my solution stopped working at all. How it was:

What might have happened here?

Upvotes: 1

Views: 1382

Answers (1)

McKabue
McKabue

Reputation: 2232

Restart your machine... .NET Core Runtime might have a problem. Also you might have upgraded your nuget packages and not your .NET Core Runtime.

  1. Announcing .NET Core 1.1
  2. .NET Standard Library
  3. Supporting multiple .NET framework versions

Upvotes: 1

Related Questions