El-Gor-do
El-Gor-do
This is for other people's future reference. I was using the MSBuildGitHash Nuget package v2.0.2. While trying to run some custom git commands to capture additional information, I ran into...
**Version:** Parquet.Net v3.10.0 and v4.0.0 **Runtime Version:** .Net 6.0 **OS:** Windows #### Expected behavior ParquetConvert.Serialize(...) should succeed if a schema's DataField is constructed with a null propertyName. #### Actual behavior...
If I have a class containing a `static` property, such as ``` public class MyClass { public int PublicInstanceValue { get; set; } public static int PublicStaticValue { get; set;...
Using CommandLineParser 2.9.1, the unparsing behaviour with `SkipDefault = true` seems to be incorrect. Here is a test app to reproduce the behaviour. ``` using CommandLine; namespace UnparsingTest { public...
Always output options where Required = true. Output options where value == default && OptionAttribute.Default != default.
**Describe the bug** I am using .Net 8, Dapper 2.1.24 and Dapper.AOT 1.0.31 with SQL Server 2019 LocalDb. I am trying to set session context variables by calling the system...
I am using SystemTextJson.JsonDiffPatch 2.0.0 on .Net 8. Given this `TestClass`, I want diffs to include `CompareMe` and exclude`IgnoreMe`. ``` public class TestClass { public int CompareMe { get; set;...
**Describe the bug** Possibly related to https://github.com/TestableIO/System.IO.Abstractions/issues/1138 On Windows and .Net 8, `FileSystem.File.Move` successfully renames a file if the destination has a different case than source whereas `MockFileSystem.File.Move` doesn't rename...
**Describe the bug** On Windows, `FileSystem.Directory.Move` is successful when the destination has a different case than source but `MockFileSystem.Directory.Move` throws `System.IO.IOException: Source and destination path must be different.` **To Reproduce**...