coreclr Questions
18
I have 3 environment specific appsettings files in my .Net core application
in project.json I have setup publishOptions like this. ( based on suggestion here)
"publishOptions": {
"include": [
...
Keever asked 31/8, 2016 at 17:52
42
Solved
I have services that are derived from the same interface.
public interface IService { }
public class ServiceA : IService { }
public class ServiceB : IService { }
public class ServiceC : IService ...
Astrophotography asked 26/8, 2016 at 21:42
6
Solved
I have an ASP.NET Core application. The application has few helper classes that does some work. Each class has different signature method. I see lot of .net core examples online that create interfa...
Bagley asked 28/3, 2017 at 20:25
0
I' v decided to upgrade a project from .net5 to .net6. After upgrade when I publish and then deploy through CI/CD server (a GitLab runner) that contains .net6 runtime, the production server that in...
Nalor asked 22/6, 2023 at 21:1
3
Solved
When I run .NET Core Web API Application on VS 2017,
In Output's Debug panel, keep showing me Exception throw:
'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
However, applicati...
3
Solved
Are there possibilities to embed dotnet core (.NET Core) environments into native processes?
My use-case would be an existing game-server where I want to offer the possibility to extend the game u...
5
Our project structure is like,
native.dll :- This contains pure native code written in c\c++.
This native.dll exposes some functions using *def file.
Wrapper Library(wrapper.dll compiled with .N...
Monocular asked 25/8, 2016 at 8:14
14
I was looking for the PostAsJsonAsync() extension method in ASP.NET Core. Based on this article, it's available in the Microsoft.AspNet.WebApi.Client assembly.
I had thought Microsoft had changed...
Kishakishinev asked 13/10, 2016 at 17:23
8
Solved
I would like to install the current version Core 1.0. Currently the RC2 version is installed. The instruction on the official website are:
Before you start, please remove any previous versions o...
Patronymic asked 24/8, 2016 at 9:37
2
Solved
I have created a console app in Dot.net Core 2.0 and when I run the I am getting Unable to attach to CoreCLR. access is denied
I have tried, cleaning, deleting files in bin and obj and also trie...
Caldera asked 15/10, 2018 at 12:51
2
I am attempting to pre-jit/Ahead-Of-Time (AOT) compile a .NET Core 5 Library to a Native Image using Microsoft's CrossGen utility as described here to improve start up time.
However the instruction...
Physostomous asked 15/10, 2020 at 0:57
2
I have asp.net core 2 application. Based on documentation i have created .pubxml file for my development environment. I am using web deployment (remote agent) to deploy the web package to target we...
Tannenbaum asked 18/5, 2018 at 19:27
1
I've been using Pythonnet for quite some time but always against .NET Framework 4.*
With the recent release of .NET 5.0 I wanted to migrate my projects but I could not make it work for non-Framewor...
Jugate asked 14/12, 2020 at 1:25
7
Solved
I want to use the Bluetooth LE functions in .NET Core (specifically, BluetoothLEAdvertisementWatcher) to write a scanner which logs information to a file. This is to run as a desktop application an...
2
Solved
Documentation for asp.net core shows how to do bundling and minification css and js files using grunt or gulp.
However when i create a project using vs 2015 it adds bundleconfig.json file into proj...
Judiciary asked 24/10, 2016 at 21:6
17
Solved
I have been developing Windows Forms programs for few years. I am now looking into .NET Core (including ASP.NET Core MVC). I am searching for the new GUI desktop technology. In Visual Studio 2015 u...
3
I have ASP.NET Core API project which was initially developed using VS 2015. I installed VS 2017 and let it convert the project.
Then i goto Project Properties -> Application ->Target framewo...
Socialite asked 19/7, 2017 at 23:32
1
Solved
I recently learned about the process for debugging managed code in Windbg with sos. I've looked through numerous examples and from what I've seen, this should work. But it doesn't. This is a .net c...
3
Now we have a free open-source implementation of the .NET core: CoreCLR. It supports Windows and Linux operation system, Mac OS support is planned. Is it possible to run CoreCLR on Windows XP?
Lodhia asked 10/2, 2015 at 15:45
4
Solved
In .Net Core 2.2. I am creating a API Controller that routes the request to another Http endpoint based on payload.
[Route("api/v1")]
public class RoutesController : Controller
{
[Htt...
Jule asked 10/1, 2019 at 20:32
1
Solved
What is Difference Between .Core CLR VS Mono CLR? Then why Microsoft maintain run time environments?
What is Difference Between .Core CLR VS Mono CLR? Then why Microsoft maintain different run time environments ?
Nevlin asked 25/4, 2019 at 4:40
2
I'm porting some code from .NET 4.6 til .NET Core and have run into some problems with MemoryCache. The 4.6 code is using MemoryCache.Default to instantiate the cache, but this doesn't seem to be a...
Afflictive asked 20/11, 2015 at 8:44
6
I have ASP.NET Core application (Web Api). The documentation has explained working with multiple environments, however it failed to explain how to set aspnetcore_environment when publishing the web...
Stipendiary asked 31/8, 2016 at 0:8
3
In ASP.NET Core application I have a action method that returns some data. I wanted to cache this data on client side. So based on the documentation here i can use ResponseCache attribute on the ac...
Kissee asked 1/11, 2016 at 21:42
3
Solved
On "normal" .NET assemblies targeting .NET Framework 4, I can use AppDomain.CurrentDomain.GetAssemblies() to get a list of all loaded assemblies.
How to do this on a Windows Universal App or on a...
Hydrocortisone asked 9/9, 2015 at 18:50
1 Next >
© 2022 - 2024 — McMap. All rights reserved.