tagged [.net-standard]

What is the equivalent of Type.GetGenericArguments() in .NETStandard 1.0 / .NET Core?

What is the equivalent of Type.GetGenericArguments() in .NETStandard 1.0 / .NET Core? The method `System.Type.GetGenericArguments()` is 'missing' from .NETStandard 1.0, and I thought that the `TypeInf...

10 Jan at 13:42

Why doesn't AutogenerateBindingRedirects work for a Web.config in Visual Studio 2017

Why doesn't AutogenerateBindingRedirects work for a Web.config in Visual Studio 2017 I have a reference to a .Net Standard 2.0 library that requires Microsoft.AspNet.WebApi.Client 5.2.4. This has a lo...

Auto Versioning in Visual Studio 2017 (.NET Core)

Auto Versioning in Visual Studio 2017 (.NET Core) I have spent the better part of a few hours trying to find a way to auto-increment versions in a .NETCoreApp 1.1 (Visual Studio 2017). I know the the ...

Create a table if it does not exist?

Create a table if it does not exist? Using Entity Framework Core, is there a way to create the table if it does not yet exist? Exception will throw even if `EnsureCreated` is called in the context: ``...

Failed to resolve "System.ServiceModel.WSHttpBinding" reference from "System.ServiceModel, Version=3.0.0.0"

Failed to resolve "System.ServiceModel.WSHttpBinding" reference from "System.ServiceModel, Version=3.0.0.0" I am getting this error in my Xamarin.ios project. I am using MVVMCross 5.7.0 to build a cro...

What is the difference between .NET Core and .NET Standard Class Library project types?

What is the difference between .NET Core and .NET Standard Class Library project types? In Visual Studio, there are at least three different types of class libraries you can create: - - - While the fi...

How can I change a .NET standard library to a .NET framework library?

How can I change a .NET standard library to a .NET framework library? I'm writing a class library for a simple parser in C#. When I first created it, I used .NET standard 2.0, but now I need to migrat...

Why is client-side Blazor using .NET Standard 2.0 and how to use .NET Core 3.0 with Blazor?

Why is client-side Blazor using .NET Standard 2.0 and how to use .NET Core 3.0 with Blazor? Is it possible to use .NET Core 2.2 or 3.0 with Blazor? Because at this moment, the `blazorhosted` template ...

Migrating ServiceStack project from mono to .NET Core /Standard

Migrating ServiceStack project from mono to .NET Core /Standard We deploy our project to mono environments. We target .NET 4.5. Now we are starting second project, which will have same ServiceModel as...

Debugging symbols not loading in .NET standard project targeting .NET Framework

Debugging symbols not loading in .NET standard project targeting .NET Framework I am using Visual Studio 2017. I created a library (let this library be ) project with two Target frameworks, and . Then...

Reading appsettings.json from .net standard library

Reading appsettings.json from .net standard library i have started a new RESTful project using .NET Core Framework. I divided my solution in two parts: Framework (set of .NET standard libraries) and W...

How to Configure Network Tracing Dotnet core for HttpClient calls?

How to Configure Network Tracing Dotnet core for HttpClient calls? As per reference document at [https://learn.microsoft.com/en-us/dotnet/framework/network-programming/how-to-configure-network-tracing...

In EF Core, how to check whether a migration is needed or not?

In EF Core, how to check whether a migration is needed or not? I am using Entity Framework Core in an Xamarin.iOS application. In my core project that contains code (.netstandard 2.0) that is shared b...

25 Jan at 12:52

Dynamic reference in a .net core app targeting net standard 1.6?

Dynamic reference in a .net core app targeting net standard 1.6? I'm trying to use a `dynamic` variable in a C# .net core app that's targeting .net standard 1.6. (platform? library? framework? meta-fr...

27 Sep at 16:23

The current .NET SDK does not support targeting .NET Standard 2.0 error in Visual Studio 2017 update 15.3

The current .NET SDK does not support targeting .NET Standard 2.0 error in Visual Studio 2017 update 15.3 I want to create a class library project with Target Framework .NET Standard 2.0. I've updated...

Could not load file or assembly System.Data.SqlClient, Version=4.2.0.2 when I use System.Data.SqlClient Version 4.4.3

Could not load file or assembly System.Data.SqlClient, Version=4.2.0.2 when I use System.Data.SqlClient Version 4.4.3 I use System.Data.SqlClient Version 4.4.3 for all .NET Standard 2.0 class librarie...

How to create Autoincrement column in SQLite using EF core?

How to create Autoincrement column in SQLite using EF core? I am using Entity Framework Core 2.0 for Sqlite code first in my [UWP and .NET Standard](https://learn.microsoft.com/en-us/ef/core/get-start...

New .csproj format - How to specify entire directory as "linked file" to a subdirectory?

New .csproj format - How to specify entire directory as "linked file" to a subdirectory? With the new `.csproj` format (as well as the old), it is possible to add files as linked outside of the projec...

Is ConfigurationManager.AppSettings available in .NET Core 2.0?

Is ConfigurationManager.AppSettings available in .NET Core 2.0? I've got a method that reads settings from my config file like this: It compiles fine when targeting .NET Standard 2.0 only. Now I need ...

Environment.MachineName equivalent for .NET Standard 1.4

Environment.MachineName equivalent for .NET Standard 1.4 I am creating a class library that will be used in a WPF project and a .NET Core project. I am trying to get the name of the machine using my a...

23 May at 11:47

Alternatives of CompileToMethod in .Net Standard

Alternatives of CompileToMethod in .Net Standard I'm now porting some library that uses expressions to `.Net Core` application and encountered a problem that all my logic is based on `LambdaExpression...

10 Jan at 03:37

Can I get a pointer to a Span?

Can I get a pointer to a Span? I have a `(ReadOnly)Span` from which I want to decode a string. Only in .NET Core 2.1 I have the new overload to decode a string from it without needing to copy the byte...

Trying to set-up Entity Framework core in .Net Standard project

Trying to set-up Entity Framework core in .Net Standard project I was wondering if I could set-up my EntityFrameworkCore in a .NET Standard 2.0 project easily. I was following this [Tutorial](https://...

Passing IHttpClientFactory to .NET Standard class library

Passing IHttpClientFactory to .NET Standard class library There's a really cool `IHttpClientFactory` feature in the new ASP.NET Core 2.1 [https://www.hanselman.com/blog/HttpClientFactoryForTypedHttpCl...

Error while reading json file in dotnet core "the configured user limit (128) on the number of inotify instances has been reached"

Error while reading json file in dotnet core "the configured user limit (128) on the number of inotify instances has been reached" I have an console application (in dot net core 1.1) which is schedule...