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:

13

Downloads of v 2.2.0:

13

Last Update:

02 Mar 2024

Package Maintainer(s):

Software Author(s):

  • Charlie Poole

Tags:

testcentric pluggable agent net20

.NET 2.0 Pluggable Agent

  • 1
  • 2
  • 3

2.2.0 | Updated: 02 Mar 2024

Downloads:

13

Downloads of v 2.2.0:

13

Maintainer(s):

Software Author(s):

  • Charlie Poole

.NET 2.0 Pluggable Agent 2.2.0

  • 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 .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 testcentric-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 testcentric-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 testcentric-extension-net20-pluggable-agent
  win_chocolatey:
    name: testcentric-extension-net20-pluggable-agent
    version: '2.2.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'testcentric-extension-net20-pluggable-agent' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.2.0'
end

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


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

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


package { 'testcentric-extension-net20-pluggable-agent':
  ensure   => '2.2.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 flcdrg on 28 Apr 2024.

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: FFDFCDF10BBF383089AFCDBBBF9F6750 | sha1: 38A5A48E9582AFA96695B58136F6744984C563A0 | sha256: 8F3A1058DB62C4945E95C44E4C4810DC62568B4B37A5CD54E6393E455BDFDE3F | sha512: E1A8E388CE047E09FB70C9AB4651B2BA50194D0678D4156CF4FC9D48C799CE023ABA658C13350AF9EC0D1E84D8A740E3584BB796510FD5CEB4AE28016557953A
tools\net20-agent-launcher.pdb
 
tools\nunit.engine.api.dll
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
tools\TestCentric.Engine.Api.dll
md5: 654DF88A2FD3E1996EC4F0C9C485C30D | sha1: 46087501D99267A2F7E5DF1784F5896C015536AF | sha256: 68B2643E9952D655B653EA318F6510DD0E461A19F3730ABF2BBF37138B18EFFD | sha512: 697E7BDB1113A9C09EBF7D2F601B367E3E73D95F596CA53BBDE302D9683E3156FF77866C05A0DB8FBEB27AA67235B33058C14CF5EB39263997290871E9F4AA9A
tools\agent\net20-agent.exe
md5: 28DA9C4A3EA968AF54F22A7E429B3880 | sha1: A6A5B506BBB8EC7370900FF74BBA891F62CA0131 | sha256: F0F6FC6BF1DE474A1C0112108C42654460D4653E6C05C9B4A7544ECFCB79C794 | sha512: 09C474AA7E8568059D1281D9EC8E9B2B12B448507319E598FE98141E7795CDFB1ADC924C6DCBC53050B0879426464C30B302C7D90441C039725775DB837A3F86
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\TestCentric.Agent.Core.dll
md5: F3A4F332FB40D92E973D0EDE40B093BF | sha1: 1862C0A55B410C338EF475289C74763465CA9D38 | sha256: 13D36E6C9A6A5BA167017FE82ED2EBBB3FEFD384914E728BDD7091166A455D70 | sha512: 7BB110CC8418DC6168BD503116297D2A3F77482B9B8A430C16F1C5C851391B3B6B53B7CB48F5F0B0AD3C884C408CF63126E34DF29EF63DDCBB7D457811728404
tools\agent\TestCentric.Engine.Api.dll
md5: FE59E43A5F14F573DC656A425D982B45 | sha1: A0341D27A7720FDF5AB946D7E41D6C48052A8DB3 | sha256: E3CA9334151DD28321970B3C9BB209751A3826CAB8C24F13635F3D49E7F5EF2A | sha512: 51AC5899FF3D2E580D93BEB454645FAB8E2D2AE4FD79BE027499A538E07815E7488BFE2433C466C76910852292B622ED0F7D82EDBC146044D531F53FBB24AA6C
tools\agent\TestCentric.Metadata.dll
tools\agent\TestCentric.Extensibility.dll
md5: E85AAB9458ACC38FF9535689F07DEAB6 | sha1: A04FF0E86D2AC77DD7C3D1AA4F633605E4B8BF2B | sha256: 222D1A08305112C7CCD3FC2B5BA78B5304B66B1E364F3C02A345C05E477440D1 | sha512: 5945B11E32B96355563EB4AE76D86C110D90A2CC4FCFB896E5D91FA94391413B583C5B9D33E892FCB28E55C9155403CDB7795B9CD5EC803C221F05FCAE0489BA
tools\agent\TestCentric.Extensibility.Api.dll
md5: E84780A0A5DA064ABB503B5FE7F1B16A | sha1: 78749434DEF62896D5853FAF9098E82899E13B4E | sha256: 85C42774B566E06940FFB603AE0F312F92E638CBD25694012916A9E3E5A125DF | sha512: 42C934D13A61EBB51A31B87AF2F36786083C2E3CDCD852CFC6B933AA8DD1B151DC9E0CB9B8BE27A23BCAD331CC790F920F107CB0955EAD68FABBD30E952506F5
tools\agent\TestCentric.InternalTrace.dll
md5: F133BF474E00A5A32B54816091C24A81 | sha1: D9AF6AD926C22392645C96E9079B97A04D6B0AF8 | sha256: B9814C890E477D35C038623E7EE6A1CD4AFD1F016C770E0DE3A6ACE81C83345F | sha512: F80C59A0A74B351653BF658E435222CF0743A02A51687CA6E31796A70941E41EAF4D5B3A3DF0A5E3B8D7346C01E94B7939DF5058BB1D146EE4A0C6123C495E26

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

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