You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm benchmarking the backend of a web application with PostgreSQL as the db. We use dotConnect but it requires a dll to be signed with a licence key otherwise it fails connecting to the db. I can sign any dll using a set of cmd commands. But the problem here is that BenchmarkDotNet generates a new exe for every run.
So far I'm using the InProcess toolchain and have the benchmark project signed. But InProcess seems to have limits on the benchmark time. Thus, I'm looking for a way to intersect into the toolchain lifecycle, get the target exe name/path, and sign it.
Is it attainable somehow?
The text was updated successfully, but these errors were encountered:
I'm benchmarking the backend of a web application with PostgreSQL as the db. We use dotConnect but it requires a dll to be signed with a licence key otherwise it fails connecting to the db. I can sign any dll using a set of cmd commands. But the problem here is that BenchmarkDotNet generates a new exe for every run.
So far I'm using the InProcess toolchain and have the benchmark project signed. But InProcess seems to have limits on the benchmark time. Thus, I'm looking for a way to intersect into the toolchain lifecycle, get the target exe name/path, and sign it.
Is it attainable somehow?
The text was updated successfully, but these errors were encountered: