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 - Net20 Pluggable Agent

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

  • 1
  • 2
  • 3

2.1.0 | Updated: 15 Apr 2023

Downloads:

488

Downloads of v 2.1.0:

100

Maintainer(s):

Software Author(s):

  • Charlie Poole

TestCentric Extension - Net20 Pluggable Agent 2.1.0

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

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

To uninstall TestCentric Extension - Net20 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-net20-pluggable-agent -y --source="'INTERNAL REPO URL'" --version="'2.1.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-net20-pluggable-agent -y --source="'INTERNAL REPO URL'" --version="'2.1.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-net20-pluggable-agent
  win_chocolatey:
    name: nunit-extension-net20-pluggable-agent
    version: '2.1.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-net20-pluggable-agent' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.1.0'
end

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


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

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


package { 'nunit-extension-net20-pluggable-agent':
  ensure   => '2.1.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 20 Apr 2023.

Description

This extension allow the TestCentric GUI to run tests under the .NET 2.0 framework.


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 Net20 Pluggable Agent 1.0.0 - March 30, 2021

This is the initial release of the net20 pluggable agent and is the first
pluggable agent released. Pluggable agents allow the TestCentric Engine
to support agents for executing tests beyond those that are built in.

TestCentric Net20 Pluggable Agent 2.0.0 - December 2, 2021

This release of the net20 pluggable agent is compatible with the TestCentric
2.0 GUI and engine, which is still in development at the time of release.
It should not be used with any earlier versions of the GUI.

Features
 * 2 Distribute pluggable agent as nuget and chocolatey packages
 * 5 Update net20-pluggable-agent to work with latest 2.0.0 engine package

Build
 * 14 Use TestCentric.Cake.Recipe for building agent
 * 16 Add publishing and release to the build script
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.Net20PluggableAgent nuget package.
tools\net20-agent-launcher.dll
md5: 640E53BDE65EB57810200A277D894AD3 | sha1: DF02DA75A0B96EA6E1594F1250D9FBD05622737F | sha256: 0FFB1CE89396C7DB3FBE0F98486600727EC6BAF55D49C16663DD50C7A92E3E97 | sha512: 46D21EA63308F0F4FDAA16A8605653A74228CBAEA1E4AFF6BABF430530EF89844852814F3DFA053E7386111A3E82D7D19CBE784BCCB78937419CDC0E0F21F60D
tools\nunit.engine.api.dll
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
tools\testcentric.engine.api.dll
md5: 57A36BA25533C1EB1B8D248D387819C4 | sha1: F70C8F5688EB0D3DFEEAC5A69EF29065AD775195 | sha256: F949B7BCB61CE4B61D7E2E792797E23E7EC36362611088D56B2C59EEC8DBC561 | sha512: 227B076B4522314EE6E29A6C981040F6528164C368CD3C6665111036B7BBE184625DBF0D694A4CB345B2F9192414C7D25E6EEA26DB3430E1E21C63735DAFD1E7
tools\agent\net20-pluggable-agent.exe
md5: EA626FD816705835099E04820D4AD423 | sha1: F6F17ACF919F98AC3E4B8E73130CBA57DF52122D | sha256: 8D743A526DEA97B684098B61BCA19E0931CD1B1FFD42B694F85D1C2BB711B0F5 | sha512: 955D5637FC0BAB9E2A9E5EDC4F7B45C29DBCB68E43689916839687B001F416BCD397A3E1D4E864F03B35E7E50DA3D28FE79EFD8533CF92ECAC1A1B9B494FC44C
tools\agent\net20-pluggable-agent.pdb
 
tools\agent\net20-pluggable-agent.exe.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\net20-pluggable-agent-x86.exe
md5: D1D5F4226325CE8AE9E1361C9A655C4B | sha1: 1458B80BEAE0CAAEDDF02819FEE29317120B3426 | sha256: D306B3307D8ED66F3C5AE823AD944304B0F974437C4AC66EBD84BB7B819E0E7F | sha512: B13A2F8C0B3384804496C233F162D15085948316B7AB1ED239857EA81282387F3DA60B739AEDCC5823BE395FC478CD198D80C13E84180FFC495C3DC40299CE69
tools\agent\net20-pluggable-agent-x86.pdb
 
tools\agent\net20-pluggable-agent-x86.exe.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\nunit.engine.api.dll
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
tools\agent\testcentric.engine.core.dll
md5: 5DF19616FF68FD41D6B3A03F88DCE8E8 | sha1: B90D1DF0D9C3E465CAF82AE8806FC179273136BB | sha256: EB4E346EE6433820D604A4A55BA867AE7636B4EFA6CE453B4A6B39F6214F5553 | sha512: 94B5179A927BA9B529977C33BABB4DAB1C4E221BE785F2FCB2442D94F65DD2304B816D22D7F546502E52DD7D62F1688A74ACD4D4DEAC2606565CA13A81F0EAC4
tools\agent\testcentric.engine.metadata.dll
tools\agent\testcentric.extensibility.dll
md5: 0F8E8736434534609BAFADF298A61F8D | sha1: 19D7F01F9B7D533A421A4A24CC5E19393EC91031 | sha256: 354101BD55417F475DA743F706CBFE066D5C45C603CFF15672977C1936493E0D | sha512: 1AFBB9C694324E0268112B602ABE8CE13EEB8B686487ADB8F4064BE586EE7332725CA24385899B33E096F232D8F0CD2D4F6FCE2BEB95501E59BA4161CA92F3E0

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 - Net20 Pluggable Agent 2.1.0 100 Saturday, April 15, 2023 Approved
TestCentric Extension - Net20 Pluggable Agent 2.0.0 122 Friday, December 3, 2021 Approved

This package has no dependencies.

Discussion for the TestCentric Extension - Net20 Pluggable Agent Package

Ground Rules:

  • This discussion is only about TestCentric Extension - Net20 Pluggable Agent and the TestCentric Extension - Net20 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 - Net20 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