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:

204

Downloads of v 2.1.0:

81

Last Update:

04 Sep 2023

Package Maintainer(s):

Software Author(s):

  • Charlie Poole

Tags:

testcentric pluggable agent net6.0

.NET 6.0 Pluggable Agent

  • 1
  • 2
  • 3

2.1.0 | Updated: 04 Sep 2023

Downloads:

204

Downloads of v 2.1.0:

81

Maintainer(s):

Software Author(s):

  • Charlie Poole

.NET 6.0 Pluggable Agent 2.1.0

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

>

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

>

To uninstall .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'" [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'" 
$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.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-net60-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-net60-pluggable-agent
{
    Name     = "nunit-extension-net60-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-net60-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 16 Sep 2023.

Description

TestCentric engine extension for running tests under .NET 6.0


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\README.md
# NET 6.0 Pluggable Agent

A **pluggable agent** for the TestCentric Gui Runner, capable of running tests under .NET 6.0.

## About Pluggable Agents

Version 2 of the **TestCentric Engine** will no longer have built-in agents for running tests. All agents will
be distributed separately, as **pluggable agents**, which are a particulary type of engine extension supported
by TestCentric.

Of course, a runner without any agents would not be capable of doing anything useful. So, each runner we provide
will come with at least one **pluggable agent** pre-installed. For example the  2.0 release of the GUI will
include agents targeting `net462`, `net6.0` and `net7.0`. 

The **pluggable agents** provided with a runner are still separate packages, but are listed as dependencies of
the runner package itself. This allows us to modify easily modify the set of standard agents provided for a
runner over it's life cycle and over the life cycle of the supported .NET platforms.

## Notes

1. All **pluggable agents** are being released with an initial version of 2.0.0. This is done to serve as a
reminder that the agents will only function in version 2.0.0 or higher of the TestCentric Gui Runner.

2. The package id for each **pluggable agent** uses the NUnit naming convention: _NUnit.Extension.*_ or
_nunit-extension-*_. However, no releases of NUnit 3 currently support this type of extension and it's not
clear whether they will be supported in future releases.
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.Net60PluggableAgent nuget package.
tools\net60-agent-launcher.dll
md5: 20ECEE88341E91A6AFD0D623981194A5 | sha1: 5EF6AB1C1CF5C76E569C1D055BD0AF2A51900ABC | sha256: 23F006DAB7232C9516C061A1DC9F8B5AEF9E7781CF6035A7EA655D13F86F9892 | sha512: C036344B44B9D7A9F5BBE8EE6BE7EA40F005856AE36703E233EC939FB2445C3836B69FBE7F237A273111A1D853128462C92109725248CCBE6B536739C1AEBFCF
tools\net60-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\net60-agent.dll
md5: 4FBE2FB1AAD7825253EBCED6D006FB77 | sha1: 0CDB1B8D403A31EB1AACE0CD710AAA59C31055DA | sha256: 77E9A50C1F1593E7B2CFE282C51CB2BA7B52F86444FF2790C33C2B483E8BA9C3 | sha512: E03EA48FA6482BD25B35F157871520C5F2A5731112884104A8CFC3A0C07FB0A7270EC514DE41983C474B88531950C6C2474ABEFC26245A4C646FEEEED9771952
tools\agent\net60-agent.pdb
 
tools\agent\net60-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-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v6.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v6.0": {
      "net60-agent/2.1.0": {
        "dependencies": {
          "NUnit.Engine.Api": "3.16.2",
          "TestCentric.Engine.Core": "2.0.0-beta2"
        },
        "runtime": {
          "net60-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-beta2": {
        "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-agent/2.1.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-beta2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QEUjZCzfxZHRC15lvXaVRHF7tRto1yFgj/N2mg0bo1fNk4+u3KG83bLODiLzdZBPU6TtzDlkAo0QdGF1NokcBg==",
      "path": "testcentric.engine.core/2.0.0-beta2",
      "hashPath": "testcentric.engine.core.2.0.0-beta2.nupkg.sha512"
    }
  }
}
tools\agent\net60-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: 1C62543649C2298A41DCB362E7144555 | sha1: 954A818F73821BBEA9F082E232EEB78CA3071B5C | sha256: BA0901991F69DAA28FD07873546F9BA00AF70BCE6851B0296541C853DAC30635 | sha512: 0FDF0FC140DB39D0DF89D5C9F6FAD04159FDBE48B65486CE882339CE543E8B2F4292B64A24C596CB81C584F95286272C5C03345A19640F830CD2B368DDCE91A4
tools\agent\testcentric.engine.metadata.dll
tools\agent\testcentric.extensibility.dll
md5: FD7AA1F961D1913C76AA71E6AFA56522 | sha1: 1B5EC66DE32F4D74279F03729E71819600B95248 | sha256: 40F35B2C67992E47C2F680E1339B8590EFC85080D202DD48F18FB267E8FEEDA4 | sha512: 753E35FDC9B3A1E9B55F1CA024B3CDA3D1DAB632F1D53EAB1A2408DF572E681C17F22AA5BF6597E39351A4F494A0A22825B1D00AB2AF61DDCC1A403E5ADFBFC1
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 .NET 6.0 Pluggable Agent Package

Ground Rules:

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