Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can I run a CMD command during the toolchain lifecycle? #1345

Closed
DmitrySenin opened this issue Jan 7, 2020 · 2 comments
Closed

Can I run a CMD command during the toolchain lifecycle? #1345

DmitrySenin opened this issue Jan 7, 2020 · 2 comments

Comments

@DmitrySenin
Copy link

DmitrySenin commented Jan 7, 2020

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?

@adamsitnik
Copy link
Member

DmitrySenin I have filled #1403 which should solve this problem

@adamsitnik adamsitnik added this to the v0.13.x milestone Oct 23, 2020
@timcassell
Copy link
Collaborator

timcassell commented Aug 19, 2023

I think this can be done with MsBuildArgument.

Job.Default.WithArguments(new[]
{
    new MsBuildArgument("/p:SignAssembly=true"),
    new MsBuildArgument("/p:AssemblyOriginatorKeyFile=StrongNameKey.pfx")
})

(You should use an absolute path.)

@timcassell timcassell removed this from the v0.14.x milestone Jan 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants