Questions tagged [.net-runtime]

.NET Runtime also known as Common Language Runtime (CLR), the virtual machine component of Microsoft's .NET framework, manages the execution of .NET programs.

CLR is often referred to as .NET Runtime inside Microsoft components. For example, in the event of .NET Framework runtime errors, CLR is referred to as .NET Runtime in the Windows Event Log.

36 questions
0
votes
1 answer

Unable to open VS solution for any libararies in dotnet/runtime in Visual Studio 2019 v16.7.6

I downloaded the repository https://github.com/dotnet/runtime and followed this workflow guide https://github.com/dotnet/runtime/blob/master/docs/workflow/README.md After that, I ran the build.cmd from root directory of the repository. Took me a…
0
votes
0 answers

How to check .NET Core Framework Runtime & Hosting Bundle is installed in windows server

I am struggling to know if there any way to check for .NET versions. On any given server, can we able to check if the following requirements are met? And if they are installed or not. ☐ Install IIS ☐ Install .NET Core Framework Runtime & Hosting…
goldenbutter
  • 575
  • 2
  • 12
  • 25
0
votes
1 answer

Event ID:1026 System.InvalidOperationException at System.Linq.Enumerable.Single

I made the following changes to my DbContext //public DbSet Roles { get; set; } //old //public DbSet TypePermissionObjects { get; set; } //old //public DbSet Users { get; set; } //old public…
Kirsten
  • 15,730
  • 41
  • 179
  • 318
0
votes
1 answer

Can I use the Asp.Net Core shared runtime from .Net Full Framework app?

I have an Asp.Net Core 2.2 application built using .Net Full Framework (4.6.2) libraries. This is done to maintain compatibility with some shared libraries used by my company. When I publish my web site I get the "standalone" distribution: I have a…
Alberto Chiesa
  • 7,022
  • 2
  • 26
  • 53
0
votes
1 answer

Managed code in a hosted .NET Core runtime corrupts the caller stack

I am playing with the .NET Core runtime hosting example. When I build it "as is" (64 bit) on Windows, it works. When I build it as a 32-bit application (on Windows) and change the .NET runtime to x86 (-r win-x86), it crashes. This is what's…
dymanoid
  • 14,771
  • 4
  • 36
  • 64
0
votes
1 answer

.NET Web App compilation on first request

I have a short question, once I deployed my Web App to IIS and when i make a first request it is compiled to CIL and stored in "\Temporary ASP.NET Files" folder. After that first request, is there a full compiled app or only used part of it? I have…
Bonus
  • 43
  • 1
  • 7
1 2
3