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?
How to configure Stackify prefix with Jetbrains Rider debug (.net core projects)
590 views Asked by Andrey Nikolaev At
2
There are 2 answers
0
dalcam
On
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)
Related Questions in ASP.NET-CORE
- Windows environment variables at appsettings.json
- Which approach is right while creating a service for your update method?
- New Blazor Web App, Password Reset "A valid antiforgery token was not provided"
- No webpage was found for the web address: https://localhost:7002/Category/Add?area=Admin. Why is my URL generated like ?area=Admin instead of /Admin/
- how to get the html for a tag helper in code
- How to share authorization implemented in the server project with the client project in Blazor Web App Auto project?
- Why https is disabled on publish in .NET Core 7.0
- How to set language in a server-side rendering blazor app
- How can I debug server side rendering blazor code in a component?
- ASP.NET Core 6 randomly returning 200 with empty response
- ASP.NET Core MVC : NullReferenceException: Object reference not set to an instance of an object
- ASP.NET Core Identity Custom Register Endpoint
- VS Community 2022 cannot install dotnet-ef when i try to publish
- How does ASP.NET Core Identity ensure username is unique under concurrent conditions?
- In clean architecture, is the presentation layer allowed to communicate directly with the infrastructure layer?
Related Questions in IIS-EXPRESS
- Add Virtual Directory to IIS Express with launchsettings.json
- Blazor .NET 8 - Staging launch profile not starting website VS2022
- How do i run IIS Express-only projects via CLI?
- HTTP Error 413.1 - Request Entity Too Large issue
- HTTP Error 401.0 - Unauthorized You do not have permission to view this directory or page when running ASP.NET MVC 5 app from VS 2019 & IIS Express
- Brand new ASP .NET Core Web app gives 404 errors
- Debugging multiple web application within one IIS Express site
- .net 6.0 mvc app shows wwwroot folder directory listing instead of my application when I run the app
- Is it possible to set IIS Express service ID to an AD service Account
- Unable to start program "https://localhost:44333" There are no more files
- Can I use IIS Express using .NET Framework 4.8 using a .csproj file written in the SDK format?
- Unable to launch the IIS Express Web server in vs 2017
- Why is my BackgroundService getting cancelled?
- IIS Express Worker Process preventing Visual Studio 2022 project from building
- IIs Express, Local IIS: Web Config error: Cannot add duplicate collection entry of type add with unique key attribute Path set to '*'
Related Questions in PROFILER
- what are the numbers in the operation names when profiling an application
- Unable to capture iterations on dlprof
- Linux perf does not record function in libstdc++.so correctly
- Where can I track subscribed events in unity?
- Intel Vtune hotspot can not see source code (only assembly code )
- How to use visual studio performance profiler ? after clicking start the application is running but not the profiler
- When profiling using torch.autograd.profiler, the run time changes every time I added profiler.record_function to different plac
- How to interpret Firefox profiler result evaluation for non-JS code?
- Is there a way to parse data generated by perf tool?
- Error while connecting to Snapdragon Profiler
- Too much memory used when using WebCamTexture in unity
- Intellij Profiler - read/copy/save value
- Memory leak in fragments : activity in ActivityThread$ActivityClientRecord
- How to construct a similar test program based on the behavior of a given program?
- How to Setup Netbeans Profiler for Payara server deployed in remote windows host?
Related Questions in STACKIFY
- APIs Disappearing from Stackify and Reappears after Azure App Service restarts after a While
- How to identify the cause of 100% CPU percentages of app service plan in azure?
- Azure web app for containers- additional parameters for docker run command
- System.Security.Cryptography.CryptographicException: Error occurred during a cryptographic operation
- How do I get IIS to return a Custom-Cache Control Header from WebApi 2, IIS 10 returns private every time
- Stackify Prefix sfclient ERR_CONNECTION_REFUSED
- NLog Database target does not work with a Stackify target identified
- How can I see the details of the "ASP.NET HTTP Modules" in a Stackify trace?
- How to configure Stackify prefix with tomcat in windows server 2016?
- What is the Untracked Application Code in the Stackify Prefix
- Stackify Prefix http://localhost:2012 refused to connect
- How to configure Stackify prefix with Jetbrains Rider debug (.net core projects)
- Can I add a Processor to just one Monolog handler?
- Stackify not using proxy in ASP.NET Core
- Can stackify prefix capture full response body?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
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.