1

Stackify prefix can be configured in .net core projects by adding middleware and lauching it from visual studio in IIS Express

But I want to debug project via JetBrains Rider. I can launch project in IIS but prefix not showing any info about requests. In Visual Studio all works fine. Any advices how I can achieve this?

Andrey Nikolaev
  • 368
  • 3
  • 9

2 Answers2

1

Currently, Stackify Prefix seem to only support the in-process IIS Express hosting mode, while JetBrains Rider only supports out-of-process. Here's a relevant issue in the Rider bug tracker: RIDER-22746.

ForNeVeR
  • 6,726
  • 5
  • 24
  • 43
0

I was able to get it working by installing StackifyHttpModule from nuget, and ensure it adds this to the apps web.config under the modules section:

        <system.webServer>
            <modules>
                <remove name="StackifyHttpModule_Net40" />
                <add name="StackifyHttpModule_Net40" type="StackifyHttpTracer.StackifyHttpModule,StackifyHttpTracer, Version=1.0.0.0, Culture=neutral, PublicKeyToken=93c44ce23f2048dd" preCondition="managedHandler,runtimeVersionv4.0" />
        

Note this doesnt yet work with prefix v4(beta)

dalcam
  • 1,027
  • 11
  • 28