Davi Paulino

Results 38 comments of Davi Paulino

@liarsing @sgrips @bdominguez Can you guys provide the source and transformation files? Or examples of files that do exhibit the same issue?

I recommend doing an diagnostic msbuild to create your package. (More info on that [here](https://docs.microsoft.com/en-us/nuget/reference/msbuild-targets) and [here](https://docs.microsoft.com/en-us/visualstudio/msbuild/obtaining-build-logs-with-msbuild?view=vs-2017)). There is additional info on the SlowCheetah transform targets [here](https://github.com/Microsoft/slow-cheetah/blob/master/doc/targets.md), including the names...

SlowCheetah does not reference any nuget targets because it shouldn't need to. Transformations occur on build and any future processes (such as nuget pack or web publish) should be using...

SlowCheetah needs to determine if these files are actually transform files or if they are just part of the project. As I stated in #46, generating transforms for configurations that...

I think SlowCheetah is a complete tool, especially since it now includes JSON transformations. If you want to write your own preview tool, that could be fine although it might...

That isolated ItemGroup shouldn't be an issue. What happens during build? Is the config file present in the output without any transformations? Or is it not present at all?

You're right. The fix here would probably be to add the condition `Exists('%(PublishTransformFile)')` to the current publish profile transform task then add another transform task with the condition `'$(Configuration)'=='' and...

I'm not sure I understand what you need. Are you building all configurations at once or just one configuration, but you need all the transformations to occur? In the second...

This is not included in SlowCheetah's main functionality, but can be achieved through MSBuild targets. See the [docs](https://github.com/Microsoft/slow-cheetah/blob/master/doc/targets.md) for information on how the SlowCheetah targets work (also [here](https://msdn.microsoft.com/en-us/library/ms171462.aspx) for more...

@hwisnik I think your issue was with one of the metadata missing from the files. Maybe it was because the transform files weren't associated with build configuration (which has been...