-
Notifications
You must be signed in to change notification settings - Fork 158
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
PackageManager load additional version without App.config #64
Labels
Comments
This should already be possible since var additionalVersion = new Hl7Package(...);
PackageManager.Instance.Packages.Add(additionalVersion);
// or
PackageManager.Instance.Packages.Insert(7, additionalVersion); Actually, this would only be possible if |
and to use it (I use it like this in .net8):
Hope it helps somebody. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should be possible to configure additional versions without the need to configure the App.config of the main executable (or assembly).
The text was updated successfully, but these errors were encountered: