Reputation: 267020
I'm creating a console application in dotnetcore. Do I have to get a specific package to support JSON serialization etc?
Upvotes: 0
Views: 436
Reputation: 15425
If you're in 3.0+, the System.Text.Json
namespace is available for your use.
If you're targeting one of these,
You can install the System.Text.Json
package.
Upvotes: 3
Reputation: 10184
The System.Text.Json
and System.Text.Json.Serialization
namespaces has support for JSON serialization/deserialization.
Upvotes: 3