Jacob Viau
Jacob Viau
I imagine it is failing to match the transform file to an applicable transform target. Can you share the names of the two files and entries in your project file...
@horizondave slow cheetah does not enable/disable transforms based on msbuild item type, but rather on the contents of the file. If it is valid JSON or XML it will be...
It is possible the transform is processed, but then a later build step copies the original file over and overwrites it. Can you set `Never` on `log4net.config`
Can you run an `msbuild /v:diag` and see what the `ScApplyTransforms` target outputs? Also, what is the msbuild metadata on the `log4net.config` and its transforms?
I remembered this issue is for on `publish`. If you add any random `whatever.config` and apply a simple transform for that, does it get included in the publish? You can...
I have identified the issue. 1. I don't think SC even runs on publish 2. Even running on publish, SC will transform to the $(OutDir) and not $(PublishDir) I will...
Does the transform work on build? Is there any warnings regarding the transform on build?
Slow cheetah enables its commands for projects that support NuGet. Unfortunately there is no official API for asking if a project supports NuGet, so it is not perfect and may...
It looks like add transform for "web.config" is disabled. This is most likely because web projects have their own transform support. [disabling of web.config add transform](https://github.com/Microsoft/slow-cheetah/blob/master/src/Microsoft.VisualStudio.SlowCheetah.VS/Package/AddTransformCommand.cs#L239)
Unfortunately the workaround of creating a web.base.config is not a perfect solution. Other extensions, such as nuget, will have no knowledge that for your project web.config is now "generated". In...