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 - Net 6.0 Pluggable Agent

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

  • 1
  • 2
  • 3

2.0.0 | Updated: 06 May 2023

Downloads:

404

Downloads of v 2.0.0:

123

Maintainer(s):

Software Author(s):

  • Charlie Poole

TestCentric Extension - Net 6.0 Pluggable Agent 2.0.0

This is not the latest version of TestCentric Extension - Net 6.0 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 - Net 6.0 Pluggable Agent, run the following command from the command line or from PowerShell:

>

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

>

To uninstall TestCentric Extension - Net 6.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-net60-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-net60-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-net60-pluggable-agent
  win_chocolatey:
    name: nunit-extension-net60-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-net60-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-net60-pluggable-agent
{
    Name     = "nunit-extension-net60-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-net60-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 Core 2.1 runtime.


testcentric.png
 
tools\LICENSE.txt
Copyright (c) 2023 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\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.Net40PluggableAgent nuget package.
tools\net60-agent-launcher.dll
md5: EB04BE2C733EB499743C95585223FEB0 | sha1: 5D83DF45E7DF9362DC6E86013B9F00A82A55505D | sha256: B6FEE0E8410E3C646DE7409BF3C573AE0092CEA7454E69D2AA4AAA55012AB800 | sha512: A6530F4FB49D1B6BDDEA37BFC1EE0AD829F94C5A7E1DF73E57BC24D14B6EFE301116B7F4C2C49F7B53DCC0E5C1045CB6C671ED9B42E09891351EA218E0417BD7
tools\net60-agent-launcher.pdb
 
tools\nunit.engine.api.dll
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
tools\testcentric.engine.api.dll
md5: F32298B9FC9F16E2450A3EB439D39488 | sha1: E0D03003D59A83B851CAF34732A151066A5D0F32 | sha256: 0C6A47E90714337BBA8DD9F68A7609098CE77C0DE08F23A8E1DA3BD6ED68BAB7 | sha512: 9BF3A9DEDCADE8C1549EF531AF0AF734BFC42042D81BAE48F658828DFF01FB528D468023FC22298A1F29D2F88D83C549375AF28016519E3CF7841D850931E0BE
tools\agent\net60-pluggable-agent.dll
md5: C24B6EBCBB10C76E8B1EA13C0D75D389 | sha1: 366FF2986D0C64EC1E73DD5B8A8B7AC3A0636C77 | sha256: 0A93AC7D4005DAC790DEDB16D826AF816D6CE0A1F798222AA1B71F7E93AF7657 | sha512: FFA937C53DBD8C9D568C99B4972E31E020DCECD103FDDE2BE646D439DD4CD7161EE7389AFEC270AE267E036D029B7C2B17177EB64579DB35CD024767E311FAF1
tools\agent\net60-pluggable-agent.pdb
 
tools\agent\net60-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\net60-pluggable-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v6.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v6.0": {
      "net60-pluggable-agent/2.0.0": {
        "dependencies": {
          "NUnit.Engine.Api": "3.16.2",
          "TestCentric.Engine.Core": "2.0.0-dev00007"
        },
        "runtime": {
          "net60-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-dev00007": {
        "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": {
    "net60-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-dev00007": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oA99UhqI6fz5PaESyR3ledu7LTaFsU6zNzq3U0MtbJKnRPwLRrkXWjhHHG/fVGMm8Siy1vhY2sOCUiAp0MM8ZQ==",
      "path": "testcentric.engine.core/2.0.0-dev00007",
      "hashPath": "testcentric.engine.core.2.0.0-dev00007.nupkg.sha512"
    }
  }
}
tools\agent\net60-pluggable-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net6.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "6.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}
tools\agent\nunit.engine.api.dll
md5: 1D883ED87BF005CFC00074C8D0E9A006 | sha1: 9631502093B6F89C7A1E0EC0D505966AA1AA85B1 | sha256: 2556FF7E98446FB932EA6361DB1E8872A0412BCA936712CD2840487E5EA251B6 | sha512: 57DB5CE5218C720B64D58B9F72F63FF1242A1D4D6F3149599F700B82A045B5EB45793FFAE55A00E46ABA84E948972CFBF5877824466040A310028FDB45981FB0
tools\agent\testcentric.engine.core.dll
md5: 050C994FA289AA08F56D0A7569203648 | sha1: 5E305C514392FE733EF5093F279D9403BBD770BF | sha256: BBA1D7BCF67D660F59B241C192AF29ECA38CBB71695EF5A411550DBE98022187 | sha512: 6CE5A3A7632FD77BB700E775D355393EF509CB5FA598A1ED54CB2C9617BAB45C76B9E3FE6260AE8FA8445405EEDD6DDF1E217E247F3429D9D6AE307815A2BAC1
tools\agent\testcentric.engine.metadata.dll
tools\agent\testcentric.extensibility.dll
md5: 5A6794C31AECAFE128A7BFDEB164FBA0 | sha1: 077768C208389678CDF83F43832EFD216916A435 | sha256: 5590BB34356F898511A5D95B18653578ACAB8D32B84BF0F8959CACE39F31AD3E | sha512: FE07B807F95B9BB68F7EBF016757B473A66056D1C1E9A15BB32B1DBAF387330498A7B6AADF7756C4286E24700A5C8DD37635B9D1F9C0F37E6A42E9AA60A83D25
tools\agent\Microsoft.Extensions.DependencyModel.dll
md5: 8C222EE9AF624C8A47F04AC0F0ED5D27 | sha1: 88E6D44DF0C532CF70FAF3CC0ADDE67D416ECE0D | sha256: 693AD69D561F8533C9C45C41D8BCD9810547E2E862DFFB275B10B5EB0DAB9A6B | sha512: D0CE6201B3123A0311CB116DB62F6253223810A78BC3E025B9748A05A2285A41B256C180F7E7AA75202D6151365C2E07486C9B6FC7B939E1EFED9B54C84A0BE9

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 - Net 6.0 Pluggable Agent 2.0.0 123 Saturday, May 6, 2023 Approved

This package has no dependencies.

Discussion for the TestCentric Extension - Net 6.0 Pluggable Agent Package

Ground Rules:

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