I would like to run a powershell build script where I have some config files (xml/json) that are not app.config, appsettings.json nor web.config files that I would like to transform based on the build configuration. The perfect tool for this appears to be VisualStudio.SlowCheetah since it supports both xml and json and it uses the same underlying technology as web.config transforms (which are also in my project). Is there any way to run this tool from powershell, it would be nice to have the same tool that does the transforms within the solution also do transforms on my auxiliary files?
Can you run Microsoft.VisualStudio.SlowCheetah from powershell?
542 Views Asked by Bitfiddler At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in SLOWCHEETAH
- Heat.exe (fro WiX library) not able to create task for SlowCheetah
- Preventing SlowCheetah from encoding "<", ">" and adding 
 for carriage returns
- Slow Cheetah transform failing
- SlowCheetah: Transformed files from class library project not copied to the referenced projects
- Transform app.config for 3 different environment
- Slow cheetah not transforming file
- Why does my SlowCheetah configuration not work?
- App.config replacements for unit tests
- SlowCheetah not transforming web.config on build
- Web Config Transform not working
- Using SlowCheetah's app.config transformations with Setup projects
- ContractFilter mismatch at the EndpointDispatcher due to endpoint transformation failed
- Slowcheetah installed but there's no transform option
- slowcheetah transformation on non-web/app.config file that do not reside in application root
- VS Setup Project target app.config in ..obj\x86\Release
Related Questions in XDT-TRANSFORM
- How do I transform replace a dependentAssembly in web config?
- XDT Transforms - Transforming the transform
- XDT transformation removes wrong entry
- web.config XML-Document-Transform not working in VS 2013
- Move XML element using XDT
- Generating xml document transformation for Staging and Production web.config file
- Visual Studio 2008 XDT (Config Transform) on build
- Transform app.config for 3 different environment
- app.config transformation - nlog rules logger replace not works
- Change the target framework from Client to full in nuget package
- XDT Transform: InsertBefore - Locator Condition is ignored
- Web Config Transformation Syntax
- How to handle deep XDT transforms when structure of target config file is not known?
- Web Config Transforms are HTML Encoding some of the config and breaking it
- MVC HTML ActionLink inserting a lot of %20 in the URL
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
So here is my proof of concept:
My folder contains 4 files:
PerformTransform.ps1 looks like:
Here is my Transform-Config.ps1:
The config files are not important, you should be able to use an existing app.config and app.ENV.config transform file to play with this.
If there is an easier way to do this, please let me know!