paiden

Results 11 comments of paiden

So what does this mean for this PR? Do you consider merging it? Or not, because this fix is currently not needed? IMO this way of resolving the GodotProjectDir is...

Currently the extension does this: ```csharp // Pseudocode _godotProjectDir = ActiveSolution.Directory ``` A project for that `IsGodotProject()` is true, has a MSBuild Prop `$(GodotProjectDir)` that already holds a value that...

Coma currently does not support such upgrade scenarios. So there is no ‘easy’ way I can think of to achieve this. Also be careful, Default settings are not meant to...

Unfortunately I decided to completely drop TOML as a configuration format for my software projects after reading the v1.0.0rc spec. Therefore I will **not** implement any further changes for the...

@prime167 There are no concrete plans, but I'd have no issues with transferring the project ownership to someone willing to continue it. @Splamy Ad1.) v1.0.0 was only the final nail...

Here is an example that creates custom toml settings with a case insensitive converter. You have to add a converter for each enum you are using in you config file....

Unfortunately this use case is not natively supported at the moment as a quick short investigations brings up. At the moment you can only do the following workaround: ```csharp var...

```csharp public enum TheEnum { A, B, } public class Foo { public Dictionary D { get; set; } = new Dictionary(); } [Fact] public void Foooxy() { var foo...

For the fist case (file does not have key) there is no built in functionality. I will have to think about if this make sense and can be implemented in...

This works only for simple cases, as soon as you start to use converters etc. this will not work correctly anymore. Still thinking about possible solution... unfortunately I have not...