Wiesław Šoltés

Results 243 comments of Wiesław Šoltés

@matkoch The issue is not with lisp-casing. The issue is with parameter value: * Does not work: `--version-suffix "-build1234"` * Works: `--version-suffix "build1234"` I think parameter parser is not parsing...

I am expecting the `VersionSuffix` property to have value equal to `"-build1234"` but I get `null` instead.

@matkoch No problem. I have added workaround for now: ```C# if (!string.IsNullOrWhiteSpace(VersionSuffix)) { VersionSuffix = "-" + VersionSuffix; } ```

@matkoch That is good point, I was following some early .NET Core documentation. Looks like there is better way. https://docs.microsoft.com/en-us/dotnet/core/tools/project-json-to-csproj#version ```xml 1.0.0 alpha ``` https://stackoverflow.com/a/42615574/282801 And as I remember there...

Looks like your svg file has invalid xml, can you post the svg file contents here?

the `` tag is not yet supported only basic `` tags

![image](https://user-images.githubusercontent.com/2297442/186981723-0ebb7905-0f71-4809-b982-b15f9d35aa38.png) Chrome: ![image](https://user-images.githubusercontent.com/2297442/186981786-d4f1dbad-3c0c-4ce3-ab75-124ae0e7ff6f.png)

Yes text drawing drawable need major refactoring.

Interesting didn't run into that issue yet, will investigate. One thing is that previewer is using immediate renderer while application defaults to deferred.