Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

TestCentric Extension - Net50 Pluggable Agent

This is not the latest version of TestCentric Extension - Net50 Pluggable Agent available.

  • 1
  • 2
  • 3

2.0.0 | Updated: 28 Apr 2023

Downloads:

363

Downloads of v 2.0.0:

88

Maintainer(s):

Software Author(s):

  • Charlie Poole

TestCentric Extension - Net50 Pluggable Agent 2.0.0

This is not the latest version of TestCentric Extension - Net50 Pluggable Agent available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install TestCentric Extension - Net50 Pluggable Agent, run the following command from the command line or from PowerShell:

>

To upgrade TestCentric Extension - Net50 Pluggable Agent, run the following command from the command line or from PowerShell:

>

To uninstall TestCentric Extension - Net50 Pluggable Agent, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade nunit-extension-net50-pluggable-agent -y --source="'INTERNAL REPO URL'" --version="'2.0.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade nunit-extension-net50-pluggable-agent -y --source="'INTERNAL REPO URL'" --version="'2.0.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install nunit-extension-net50-pluggable-agent
  win_chocolatey:
    name: nunit-extension-net50-pluggable-agent
    version: '2.0.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'nunit-extension-net50-pluggable-agent' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.0.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller nunit-extension-net50-pluggable-agent
{
    Name     = "nunit-extension-net50-pluggable-agent"
    Version  = "2.0.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'nunit-extension-net50-pluggable-agent':
  ensure   => '2.0.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator Windos on 08 May 2023.

Description

This extension allow the TestCentric GUI to run tests under the .NET 5.0 runtime.


testcentric.png
 
tools\LICENSE.txt
Copyright (c) 2021 Charlie Poole

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

tools\CHANGES.txt
TestCentric .NET Core 2.1 Pluggable Agent 1.0

This is the initial release of the netcoreapp2.1 pluggable agent.

Pluggable agents allow the TestCentric Engine to support agents 
for executing tests beyond those that are built in.
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is published by the TestCentric Project itself. The binaries are 
identical to those in the NUnit.Extension.NetCore31PluggableAgent nuget package.
tools\net50-agent-launcher.dll
md5: 23262EC814BE7CFAA52D6ABA7E7A1069 | sha1: 875552D71429E754BA62C8EFFDE2A01F84CC246A | sha256: EFD6E341B52354396212BAFB4A118328AED7D7E6973356EE5D3681799652F3EB | sha512: 86EDE407EF24043CD09ED11D868DA995D2A5A5E02AE463B40100C3182A2BD92EA9881A6F8C66595030C576B2673A38AEF38A3413F78D77BD8D892F4A108DEF38
tools\net50-agent-launcher.pdb
 
tools\nunit.engine.api.dll
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
tools\testcentric.engine.api.dll
md5: 3D8EA1EFA66AE354FC6747B054D1A763 | sha1: D5B9FAF078AEDD351C4C0A7F9BBBF81540DFBE15 | sha256: A3774C1A471FA78F070F4A8113E373CAD67C96108400DF0C9B441C8F316E8065 | sha512: 1672782FA32F77AC1F94D53C53CC1CA27A1FE28773E86934F6DA49904A0BF482BA43AC51E9A77F779CA64D13FE043E8D4469FBBBFE5C3867EDC86F65E3BB2C65
tools\agent\net50-pluggable-agent.dll
md5: 339C0BB9F2B2A15D1A75AC0C96E01A00 | sha1: ADF375375AE54DB5098865DDBA53CEC0B8729E17 | sha256: 5F1E0EF18612B6410C4E9228981C59AA33ED2E890D9241234374D86360F7F0C6 | sha512: A654253CA36C18BEA0341C44ED6C548D636F4F695EF903ED0F6F79AD4EC5CDA9951829F70AD284207570976642133E2879B3B03B5E06D716C0ADA6ED76C7EA19
tools\agent\net50-pluggable-agent.pdb
 
tools\agent\net50-pluggable-agent.dll.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agent\net50-pluggable-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v5.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v5.0": {
      "net50-pluggable-agent/2.0.0": {
        "dependencies": {
          "NUnit.Engine.Api": "3.16.2",
          "TestCentric.Engine.Core": "2.0.0-alpha8"
        },
        "runtime": {
          "net50-pluggable-agent.dll": {}
        }
      },
      "NUnit.Engine.Api/3.16.2": {
        "runtime": {
          "lib/netstandard2.0/nunit.engine.api.dll": {
            "assemblyVersion": "3.0.0.0",
            "fileVersion": "3.99.0.0"
          }
        }
      },
      "TestCentric.Engine.Core/2.0.0-alpha8": {
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll": {
            "assemblyVersion": "3.1.0.0",
            "fileVersion": "3.100.19.56502"
          },
          "lib/netcoreapp3.1/testcentric.engine.core.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          },
          "lib/netcoreapp3.1/testcentric.engine.metadata.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          },
          "lib/netcoreapp3.1/testcentric.extensibility.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      }
    }
  },
  "libraries": {
    "net50-pluggable-agent/2.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "NUnit.Engine.Api/3.16.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cF4MPZ53w7RhOImAP280/XLGjqJOrz5u98nFiz7tp+yR1KFu83wtZ3hV6IYp70j94DD8dyzyl2b96geP0gZJWA==",
      "path": "nunit.engine.api/3.16.2",
      "hashPath": "nunit.engine.api.3.16.2.nupkg.sha512"
    },
    "TestCentric.Engine.Core/2.0.0-alpha8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZlMWnYJhHhVgD6Zes5uxg/V1hZ5/k3WZj4qzbAjeTa4sXFL3bKBD/8INQKdq/rzIewB0gqX5eKBEaS8RpV3l6g==",
      "path": "testcentric.engine.core/2.0.0-alpha8",
      "hashPath": "testcentric.engine.core.2.0.0-alpha8.nupkg.sha512"
    }
  }
}
tools\agent\net50-pluggable-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net5.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "5.0.0"
    }
  }
}
tools\agent\net50-pluggable-agent.runtimeconfig.dev.json
{
  "runtimeOptions": {
    "additionalProbingPaths": [
      "C:\\Users\\appveyor\\.dotnet\\store\\|arch|\\|tfm|",
      "C:\\Users\\appveyor\\.nuget\\packages",
      "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
      "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet",
      "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
    ]
  }
}
tools\agent\nunit.engine.api.dll
md5: 1D883ED87BF005CFC00074C8D0E9A006 | sha1: 9631502093B6F89C7A1E0EC0D505966AA1AA85B1 | sha256: 2556FF7E98446FB932EA6361DB1E8872A0412BCA936712CD2840487E5EA251B6 | sha512: 57DB5CE5218C720B64D58B9F72F63FF1242A1D4D6F3149599F700B82A045B5EB45793FFAE55A00E46ABA84E948972CFBF5877824466040A310028FDB45981FB0
tools\agent\testcentric.engine.core.dll
md5: 743937C446EF38F64E7C8BD8F3A60519 | sha1: 339BD74796521009A72B4C4253AA08713D1A5967 | sha256: 0DD2A5E697011D5475033FADBC4E6B471FB97C192AC4DF6FDA12678E87A3AEDD | sha512: FA956F7F0E9A9757673F87901F5F4B633BCC2DC1706518AEA53D7E69A35B3004C25FA03536039FF6EA1B63ECE111E04BE6C410F8ABCFC3EA35AF2502C356C47D
tools\agent\testcentric.engine.metadata.dll
tools\agent\testcentric.extensibility.dll
md5: 478537B1D561C4A264C50338F184D877 | sha1: E23317AE128043F1877658C00BF21842F9204210 | sha256: 7CE954E73E4BA2CAEC23196BC834D74E1094234DE6D361993CD407087152201D | sha512: CAD32B8BED1CDC374C4E7A35EE44BD1D118D931321BBBA6DB51E4811F0D2C7DACEAC88B1C53D74D99A9F716766D3396CF985C8C01B7BEB7EAEEFAD25E5263E3E

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
TestCentric Extension - Net50 Pluggable Agent 2.0.0 88 Friday, April 28, 2023 Approved

This package has no dependencies.

Discussion for the TestCentric Extension - Net50 Pluggable Agent Package

Ground Rules:

  • This discussion is only about TestCentric Extension - Net50 Pluggable Agent and the TestCentric Extension - Net50 Pluggable Agent package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or TestCentric Extension - Net50 Pluggable Agent, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus