Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .cloudbees/workflows/my-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: automation.cloudbees.io/v1alpha1
kind: workflow
name: My workflow

on:
push:
branches:
- '**'

jobs:
build:
steps:
- name: Say hello
uses: docker://golang:1.20.3-alpine3.17
shell: sh
run: |
echo "hello world"
3 changes: 3 additions & 0 deletions AsyncStackTraceEx/AsyncStackTraceEx/AsyncStackTraceEx.vb
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ Namespace Global
If s = "System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()" Then Continue For
If s = "System.Runtime.CompilerServices.TaskAwaiter.GetResult()" Then Continue For

' Get rid of stack-frames that are part of the runtime exception handling machinery
If s = "System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()" Then Continue For

' Get rid of stack-frames that are part of .NET Native machiner
If s.Contains("!<BaseAddress>+0x") Then Continue For

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

**Solution**: I'll write a small helper which adds those line numbers to exception stack-traces, without needing PDBs.


Test

# How it works

Expand Down