Matvei Stefarov

Results 44 comments of Matvei Stefarov

You can find the output of `dotnet --info` at the bottom of the issue, in a collapsed block ^ Here is a copy of the manifests folder: [sdk-manifests.zip](https://github.com/dotnet/sdk/files/9669229/sdk-manifests.zip)

I've uninstalled VSPreview, uninstalled all workloads, repaired VS17.3, and reinstalled workloads. That solved my problem for a while. I no longer have the preview installed, but after updating VS to...

Repaired VS again. `dotnet workload` no longer throws errors, but I am still unable to build ios/maccatalyst projects 🤷 ``` > dotnet workload list Installed Workload Ids Manifest Version Installation...

Implemented in a branch: https://github.com/fragmer/fNbt/blob/wip/serializers/fNbt.Serialization/NbtConvert.cs

There should probably be a way to easily check if two compounds have the same contents. I will add overrides of `GetHashCode` and `Equals` methods on NbtTag classes in next...

Now that I think about it, tags with numeric values (byte, int, long, float, double) can also implement IComparable. Perhaps string tags too.

Well, I can do a minor release (0.6.4) with just these additions in a couple days. Timeline of the next major release (either 0.7 or 1.0) is uncertain. The big...

I added #18 and #19 to track progress on this feature.

Looks good! I'll check for performance impact of these changes, and merge it if there are no problems.

Alright, I did some profiling. Changes to `Write(float)` and `Write(double)` don't cause any problems, but changes to `Write(string)` cause a 25% increase in CPU time, as well as doubling the...