Try our conversational search powered by Generative AI!

Preview Transform for EPiServer DXC using SlowCheetah in Visual Studio

Vote:
 

Is there a way to have the same 'preview transform' capability offered by the SlowCheetah NuGet package for the DXC transform files in Visual Studio ?

  • Web.Integration.config
  • Web.PreProduction.config
  • Web.Production.config

I understand that SlowCheetah enable xslt transformation at build, which is not the way it works in DXC. However the Visual Studio UX tool to debug xslt transform is really helpful and I was wondering if someone had a workaround to make it work.

#230694
Nov 11, 2020 16:57
Vote:
 

I don't think you need SlowCheetah at all anymore these days, if you modify your .csproj files like this:

    <None Include="Web.integration.config">

      <DependentUpon>Web.config</DependentUpon>
      <IsTransformFile>True</IsTransformFile>
    </None>
Then you can simply right click the file and click preview transform inside visual studio.
#231250
Nov 23, 2020 10:26
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.