Cannot run with sound null safety because dependencies don't support null safety

I have followed ["Enabling null safety" on dart.dev](https://dart.dev/null-safety#enable-null-safety) and also [migrated](https://dart.dev/null-safety/migration-guide) my whole Flutter application to ...

6 Jan at 00:41

JsonProperty on C# Records in Constructor

With the new C# record types in C# 9 i'd like to know wheter it is possible (for serialization) to set the `JsonPropertyAttribute` from Newtonsoft.Json on the constructor parameter. It doesn't seem to...

19 Nov at 15:42

How to create .Net 5.0 Class Library project in Visual Studio 2019 16.8.1?

I can not see the Class Library(.NET) option on window in Visual Studio 16.8.1. How can I create a Class Library (.NET) project? (Not .Net Core or .Net Framework)

Azure API Management ignores formData input parameters

I have an API built using ServiceStack which implements the Swagger UI and OpenAPI 2.0 specification. I have several POST methods that use formData inputs and these show in the Swagger UI as individua...

NET5.0 Blazor WASM CORS client exception

I have a Blazor WASM app and a Web Api to get called by Blzor via HttpClient. Both programs run on the same machine (and also in production environment which should not be to exotic for a small busine...

16 Nov at 12:56

How to override/modify the Content property of Frame to accept multiple Views in Xamarin.Forms?

Here's the template code I have: ``` public class PopupFrame : Frame { public PopupFrame() { this.SetDynamicResource(BackgroundColorProperty, "PopUpBackgroundColor"); this.Set...

Can't run app because of permission in macOS v11 (Big Sur)

I installed [macOS v11](https://en.wikipedia.org/wiki/MacOS_Big_Sur) (Big Sur) yesterday and since then I am not able to run some old application. This is the message I get: > You do not have permissi...

5 Sep at 20:10

string.IndexOf returns different value in .NET 5.0

When I run the following code in .NET Core 3.1, I get `6` as the return value. ``` // .NET Core 3.1 string s = "Hello\r\nworld!"; int idx = s.IndexOf("\n"); Console.WriteLine(idx); ``` ``` 6 ``` Bu...

29 Apr at 16:59

Building .NET 5.0 project Azure DevOps pipeline

I'm trying to build a project in .NET 5.0 using Azure DevOps pipeline Build and I'm received this error [](https://i.stack.imgur.com/4i8ux.png) ``` 2020-11-14T01:59:45.8238544Z [command]"C:\Program Fi...

Blazor Two Way Binding Text Area inside component

I am trying to two-way bind a text area inside a child component in Blazor and I just can't figure it out. ### Parent ### Child When I update from the parent component, the child textarea updates, bu...

6 May at 10:33

When to use record vs class vs struct

- Should I be using `Record` for all of my DTO classes that move data between controller and service layer?- Should I be using `Record` for all my request bindings since ideally I would want the reque...

2 Jan at 02:43

Is there any way to fix package-lock.json lockfileVersion so npm uses a specific format?

If two different developers are using different versions of node (12/15) & npm (6/7) in a project that was originally created using a `package-lock.json` `"lockfileVersion": 1`, when the developer usi...

13 Nov at 00:24

.Net 5 - WPF, unit test woes

I'm having some issues while playing around with .Net 5, so I'm hoping someone could shed some light on things. Having worked on a large enterprise .Net Framework solution for a number of years, .Net ...

12 Nov at 13:3

C# Blazor: Countdown Timer

I'm new to C# and trying to create a simple countdown timer using `System.Timer.Timers`. It didn't work as expected and I searched the internet for a solution but it didn't really fix my problem. What...

2 May at 06:9

How to mock IConfiguration.GetValue

I tried in vain to mock a top-level (not part of any section) configuration value (.NET Core's IConfiguration). For example, neither of these will work (using NSubstitute, but it would be the same wi...

13 Nov at 10:4

need help migrating winform to net 5

I'm porting a winform app from net core 3.1 to net 5 and getting the following error. > Severity Code Description Project File Line Suppression State Error NETSDK1136 The target platform mu...

11 Nov at 12:45

C# 9 records validation

With the new record type of C# 9, how is it possible to / null check/ etc during the construction of the object ? Something similar to this: ``` record Person(Guid Id, string FirstName, string LastNam...

18 Jan at 16:53

Init + private set accessors on the same property?

Is it possible to use a public init accessor and a private setter on the same property? Currently I get error [CS1007](https://learn.microsoft.com/en-us/dotnet/csharp/misc/cs1007) "Property accessor a...

11 Nov at 09:58

ServiceStack OAuth Issue with Github

I'm using the dotnet core 3.1, latest version of ServiceStack and I'm trying to use Google, Microsoft, and Github OAuth with it. So far with Google and Microsoft, I don't have any issues, however, wit...

10 Nov at 03:46

"There was an error trying to log you in: '' " Blazor WebAssembly using IdentiyServer Authentication

I have a Blazor WebAssembly app using **IdentityServer** that comes with the template as my authentication service. I am having an issue where some users are seeing "There was an error trying to log y...

npm error - verify that the package.json has a valid "main" entry

Im playing around with a simple trading bot using binance and cctx when i run my script with `node index.js` i get this long error: ``` internal/modules/cjs/loader.js:323 throw err; ^ Err...

9 Nov at 16:32

Predefined type 'System.Runtime.CompilerServices.IsExternalInit' is not defined or imported

I have been having this issues while testing the new features of C# 9.0 with Visual Studio 2019 Preview. I was testing the init setter, but the compiler shows error with the message: Error CS0518 Pred...

17 Feb at 06:18

In C#9, how do init-only properties differ from read-only properties?

I keep reading up on init-only properties in C#9 but I thought we already had that with read-only properties which can only be set in a constructor. After that, it’s immutable. For instance, in the cl...

13 Dec at 01:51

Typescript - Cannot find module ... or its corresponding type declarations

I created a new project using create-react-app and yarn 2 in vs code. The editor throws errors while importing every installed library like this: > Cannot find module 'react' or its corresponding type...

21 Dec at 10:52

Unable to resolve dependency tree Reactjs

I am trying to install react-tinder-card in my current project.So i am tring to install the react-tinder-card but after i use the command npm install --save react-tinder-card All i can see in my conso...

6 Nov at 16:50