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

Downloads:

306

Downloads of v 2.1.1:

87

Last Update:

11 Sep 2023

Package Maintainer(s):

Software Author(s):

  • Charlie Poole

Tags:

testcentric pluggable agent net20

.NET 2.0 Pluggable Agent

  • 1
  • 2
  • 3

2.1.1 | Updated: 11 Sep 2023

Downloads:

306

Downloads of v 2.1.1:

87

Maintainer(s):

Software Author(s):

  • Charlie Poole

.NET 2.0 Pluggable Agent 2.1.1

  • 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 .NET 2.0 Pluggable Agent, run the following command from the command line or from PowerShell:

>

To upgrade .NET 2.0 Pluggable Agent, run the following command from the command line or from PowerShell:

>

To uninstall .NET 2.0 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'" [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'" 
$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.1'
    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.1'
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.1"
    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.1',
  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 17 Sep 2023.

Description

TestCentric engine extension for running tests under .NET 2.0


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\README.md
# TestCentric Cake Recipe
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: 5443E3A54AD7DEBD7F9676C53700F0C3 | sha1: 3BDBC7AF2B77018264CDA4FF8C58F5EEC39C1AD8 | sha256: 48B6FE28FF5C7A4D2A7012E0FE89523B93A3FD232132725A2EB26D94997C2965 | sha512: E318245A91A16278EFBDDDD5EE1F6DF2F2E752E4E2412E0516F76879C68B7DE08FA86281909333FEDD5017141285D29F80E9D3DAB3C2F8DC317E7A75CA83DF0F
tools\net20-agent-launcher.pdb
 
tools\nunit.engine.api.dll
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
tools\testcentric.engine.api.dll
md5: FECB6ADE9FBB1966237EC40095CFAA74 | sha1: 64B72ED0EDEDA667AE0A6D2A6409A0141087CCFC | sha256: 88E57516191DA6FA72D95661020C0F7F615FC93F4C457EEDB013569725E158E3 | sha512: C2C2FDEF85E3B5B925D0ED7F152DE3D69E2E1BA11F7F56CE3E19178BD2F26DB51D10268DC0B3F596BE76CA7DBA58BA83ACE6A58B0A80C187184317C7A4CB86DE
tools\agent\net20-agent.exe
md5: EB913B8FD7BC84A3D829164CD4064C43 | sha1: 7EF0C463A9CDEC73B8EFF357675F735185D4FB24 | sha256: CAAABC18D689E0275FB9170119F6145F7C21072D2AE0B798126B34400F1F74FF | sha512: 65766E8E9B764FD41A3C9129D5E5AE1930C27F2E84728D788DB49D1E072CD4AC2A1123C536B61048B17142B56027EE574EC6624BDAA3B197A0C4F7C3126F8F45
tools\agent\net20-agent.pdb
 
tools\agent\net20-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\nunit.engine.api.dll
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
tools\agent\testcentric.engine.core.dll
md5: 4D7C292154023C85565D65E8EE4DD557 | sha1: 747D53F9A5D0635A6A72A4C588CD0FB6DFBAEBD8 | sha256: B2336B7EAF65F223C34C31AB1FCF939F10E05A1BA8CCBE6834460988AA82B4AB | sha512: 27B0AF1CC1E945CBFDD80F2EE4458FF7C536701956DA24C95AD93CC916257505488E489E85B0C8586E1865FDBE38A800C724FFF27629E2E314CC7A5A0CC61ADF
tools\agent\testcentric.engine.metadata.dll
tools\agent\testcentric.extensibility.dll
md5: DF1C1D3A73FD03B2B0469B4D0D259766 | sha1: E2098D6C44B20C2E10576F3E19F81D6E73E81AF3 | sha256: E507A7787023182C5E76D7081830797B70CEFB831AB3878E8CF2DA7CEF997E48 | sha512: 64FC858336E44CC7EB0DFDCDB0ECC0C453C74BD339345A2F99DD07EE53F5825EE1A82F382AC0E5BB3379DC0AF00B6A69E39DC7C8F802B121FF2EF88B47866E21

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

This package has no dependencies.

Discussion for the .NET 2.0 Pluggable Agent Package

Ground Rules:

  • This discussion is only about .NET 2.0 Pluggable Agent and the .NET 2.0 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 .NET 2.0 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