Davi Paulino
Davi Paulino
Using scripts to query objects does not seem to work properly (although it does work properly for arrays). Given an example JSON: ``` { "A": { }, "B": { "B1":...
While the build pipeline in .NET Core is similar to the one in the previous .NET framework, the publishing pipeline is very different. Currently SlowCheetah does not insert itself into...
Since the VSIX logic is inside [Microsoft.VisualStudio.SlowCheetah.VS](https://github.com/Microsoft/slow-cheetah/tree/master/src/Microsoft.VisualStudio.SlowCheetah.VS), the [pkgdef](https://github.com/Microsoft/slow-cheetah/blob/master/src/Microsoft.VisualStudio.SlowCheetah.VS/Microsoft.VisualStudio.SlowCheetah.VS.pkgdef) file is a static item in the project. It would be easier to generate this file on build, to avoid having...
As shown in #101 and #82, publish profiles don't have preview transforms. This is probably due to [this code](https://github.com/Microsoft/slow-cheetah/blob/master/src/Microsoft.VisualStudio.SlowCheetah.VS/Utilities/ProjectUtilities.cs#L119) only picking up build configurations. We might need to pick up...
When previewing transform, a temp file is always created for the preview. This should not happen if neither the source nor the transform file have not changed. The package should...
[SlowCheetah.Samples](https://github.com/Microsoft/slow-cheetah/tree/master/samples) needs to be updated and adapted to use the newest version of SlowCheetah so that they work correctly.
This repository has now been deprecated and development is no longer being done here. For current SlowCheetah development, please visit the [Microsoft repository](https://github.com/Microsoft/slow-cheetah/) Previously open issues will still be tracked...
Changing options page and separating General Setting from Advanced Settings. Added settings for adding `DependentUpon` metadata to transform file
Currently, the root-level element cannot be an array, the transformation will fail. First off, I think we need to add better error handling to improve the user experience. Then, look...
Add the ability to replace a node with a code-generated value during the transformation. See https://github.com/Microsoft/slow-cheetah/issues/140