Shared type global scope - is this shared across projects? #931
Answered
by
thomhurst
richardoSGSI
asked this question in
Q&A
-
When reading this page in the documentation, the Does globally indicate that the instance is shared across the project or across a solution? |
Beta Was this translation helpful? Give feedback.
Answered by
thomhurst
Oct 17, 2024
Replies: 1 comment
-
It means every test that will be executed in your test session. So basically the lifetime of the So if multiple projects end up running tests, it'll be shared across those. There is a shared per assembly option if you want to split things out. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
richardoSGSI
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It means every test that will be executed in your test session. So basically the lifetime of the
dotnet
process of your tests.So if multiple projects end up running tests, it'll be shared across those. There is a shared per assembly option if you want to split things out.