Giulia Stocco

Results 202 comments of Giulia Stocco
trafficstars

I believe that this issue is caused because Visual Studio itself usesa version of newtonsoft identifying as 13.0.0.0. I noticed a similar problem if I switched to System.Text.Json and use...

After further experimentation with this I believe in my case it is due specifically due to the use as a Visual Studio extension. It appears that if you are using...

This is for the Microsoft DevSkim extension in particular - I linked the commit in the repo that reproduces it in the initial report. The problem isn't in the latest...

Thanks for the pointer. I’m working on a major refactor of the devskim extension soon so this may help. My guess too is that something else is holding an older...

My project [Recursive Extractor](https://github.com/microsoft/recursiveextractor) leverages DiscUtils to do this for arbitrary nested file types.

If someone else was also wondering how to do this just with streams. See our implementation in MultiExtractor here: https://github.com/microsoft/OSSGadget/blob/06945f188ea8d356f5d9a83aeb7f7ba0a302431c/src/MultiExtractor/Extractor.cs#L301 ```csharp Stream yourStream = ...; using DiscUtils.Vhdx.DiskImageFile baseFile = new...

I'm currently working on a refactor of devskim and it's extensions to use the Language Server model. When I looked into this briefly the largest blocker was it seemed to...

I took another look at the documentation. It looks like writing a full plugin does require writing it in Java/Kotlin. One of the main objectives of the refactor I'm working...

Yes. This is part of #390. I've made good progress on the rewrite and I hope to have a beta of the rewritten CLI released next week.

@nvuillam Good news. I have released a preview of DevSkim 0.7 on nuget - this uses .NET 6. You can grab the latest with `dotnet tool install -g Microsoft.CST.DevSkim.CLI --prerelease`....