-
-
Notifications
You must be signed in to change notification settings - Fork 17
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
Created standalone package of Core-logic and dropped .NET Core 2.1 #93
Conversation
* dropped .NET Standard 2.0 * adjusted namespaces * made types internal
Ah, CI means
🙈 |
@dstahl-axion here's my stab on it. Please try it with the instructions below, and tell me if it fits your needs. Then I'd like to create a real release of it. For the package see trx2junit.Core v2.0.0-preview-1 For the tool: # deinstall current version
dotnet tool uninstall -g trx2junit
# install preview
dotnet tool install -g trx2junit --version 2.0.0-preview-1 --add-source https://pkgs.dev.azure.com/gh-gfoidl/github-Projects/_packaging/gfoidl-public/nuget/v3/index.json A bit a description is in the ReadMe of the PR. |
@gfoidl Wow that was fast! I've just tested these scenarios on two TRX files. One created from .net framework test assemblies and one created from .net5 test assemblies. I ran the latest published tool, the pre-release tool, and my own code using your trx2junit.Core nuget package. All produced the same output after the same runtime. This works exactly as I need it to and solves my needs perfectly. Thanks so much for the quick implementation! |
You're welcome 😄 Thanks for confirmation, so I'm going to make the official release. |
trx2junit.Core
which will be consumed by toolFixes #92