microsoft/slow-cheetah

Transform Not Working In Template Studio Created WinUI 3 Projet

wizzbangwa opened this issue · 0 comments

I am trying to transform appsettings.json. The project type is a WinUI3 project created using Template Studio. The following sub files are created:
appsettings.Debug.json
appsettings.Release.json
appsettings.win10-arm64.json
appsettings.win10-x64.json
appsettings.win10-x86.json

When debugging, transformations are not happening. All I care about is appsettings.Debug.json gets used when debugging and appsettings.Release.json gets used when releasing. The other three are useless, I have no idea when they get used. I did put the debug transformations in them in case they were being used, they're not.

Expectations:

  • appsettings.Debug.json transformations to be used when in debug.
  • appsettings.Release.json to be used when in release.