Denis Akopjan

Results 14 comments of Denis Akopjan

A great addition to the component library would be a stepper control: - https://spiegelp.github.io/MaterialDesignExtensions/#documentation/stepper - https://github.com/spiegelp/MaterialDesignExtensions The point of which would be to display a different view based on the...

Shouldn't be too hard to implement. I can take care of it

The same could be done for Azure DevOps boards. You can refer to the unofficial mobile app DevOps for API usage.

Hopefully, this is fixed soon as I'm using interfaces due to decoupling.

It is basically impossible to control which NuGet packages are copied to the output folder and which are not...

![Screenshot_20210924-075329.png](https://user-images.githubusercontent.com/16069996/134625242-4a18fe3a-7d13-4dfd-9df7-31f33fc1bba3.png)

https://forum.tuts4you.com/topic/24468-net-snippet-how-to-read-pdb-files/

https://stackoverflow.com/questions/13038249/find-source-file-of-compiled-class-in-c-sharp

So far, no functioning way of extracting the line numbers has been found. The only viable option is to parse source code files; however, this defeats the purpose of extracting...

`SharpPdb` ```cs var pdbManaged = SharpPdb.Managed.PdbFileReader.OpenPdb(string.Format(path, "pdb")); var funToken = 100663301; var function = pdbManaged.GetFunctionFromToken(funToken); IPdbSequencePoint sequencePoint = function.SequencePoints[0]; Assert.Equal(0, sequencePoint.Offset); Assert.Equal(22, sequencePoint.StartLine); Assert.Equal(22, sequencePoint.EndLine); Assert.Equal(23, sequencePoint.StartColumn); Assert.Equal(24, sequencePoint.EndColumn); var...