Davi Paulino

Results 38 comments of Davi Paulino

@hwisnik The name "FolderProfile" usually comes from creating a publish profile that outputs to a specific folder. Check the `Properties\PublishProfiles` directory in the project to see if there is a...

@sspringer I see you have the `Update` metadata on the transform files. Are these items being included somewhere else, possibly by a glob?

I tried creating a .NET Core project with the same items as you defined and was not able to get the result. If you can provide repro steps or a...

The [SlowCheetah Nuget package](https://www.nuget.org/packages/Microsoft.VisualStudio.SlowCheetah/) contains the logic for transforming XML files during build. You can see more information on how to do that [here](https://github.com/Microsoft/slow-cheetah/blob/master/doc/transforming_files.md#executing-build-time-transformations). If you have tried transforming the...

Reverted. Needs to be analyzed better and added in a future major update

The transformation does indeed get applied to the config file (you can verify this by looking at the web.config file in the output folder). Unfortunately, web projects don't use the...

It's a little more complicated for web projects since they already start off with a base file and transformation files. XML transformations already exist for these projects on publish. Transforming...

Unfortunately, this is not possible without the use of custom macros. We use Newtonsoft, which doesn't support different values

If you configure a transform for the file, it should be copied to the output directory on transform. Do you need the file to be explicitly marked as "Copy to...