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:

14

Downloads of v 2.2.0:

14

Last Update:

02 Mar 2024

Package Maintainer(s):

Software Author(s):

  • Charlie Poole

Tags:

testcentric pluggable agent netcoreapp2.1

.NET Core 2.1 Pluggable Agent

  • 1
  • 2
  • 3

2.2.0 | Updated: 02 Mar 2024

Downloads:

14

Downloads of v 2.2.0:

14

Maintainer(s):

Software Author(s):

  • Charlie Poole

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

>

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

>

To uninstall .NET Core 2.1 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-netcore21-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-netcore21-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-netcore21-pluggable-agent
  win_chocolatey:
    name: testcentric-extension-netcore21-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-netcore21-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-netcore21-pluggable-agent
{
    Name     = "testcentric-extension-netcore21-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-netcore21-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 Core 2.1


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
# 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.NetCore21PluggableAgent nuget package.
tools\netcore21-agent-launcher.dll
md5: 654CBD56A53E1EA2BEE2D873FDB92732 | sha1: A77007DC9E3899B931F7D135B47A076D79F783A5 | sha256: 2B2A6A41279D4768BE433315C13849BE9EBADEB3E4FEEFBBFEB4A1E9B3168C7D | sha512: E339640286CFA4AFBC1DC91EC94209E4A939720D9D4C79FC6B3880200D697C3DEA5A05F7F0104D25A4C7C1996285439065D19A519D6D7BDD3B4AD40E2FBA3F24
tools\netcore21-agent-launcher.pdb
 
tools\TestCentric.Extensibility.Api.dll
md5: 2E8470BE802FB4AB721FE633571FCAFC | sha1: 6571B1BFEC343525AAC1ED94F10C2F475A359708 | sha256: EA1E9B0BD9F281581A5D03546C60C565C7708CF607B87798DFC4E75FFD8C7A46 | sha512: D20CBDF71EA153D2EC7F417D4CB8E25FA511DE7C6F049C4AA5ECFA650045E8B8BDC695AB69483A1FD314F5F6B6D1396E5A1953C3792F7A18A9E4C43FAEAA917B
tools\TestCentric.Engine.Api.dll
md5: 654DF88A2FD3E1996EC4F0C9C485C30D | sha1: 46087501D99267A2F7E5DF1784F5896C015536AF | sha256: 68B2643E9952D655B653EA318F6510DD0E461A19F3730ABF2BBF37138B18EFFD | sha512: 697E7BDB1113A9C09EBF7D2F601B367E3E73D95F596CA53BBDE302D9683E3156FF77866C05A0DB8FBEB27AA67235B33058C14CF5EB39263997290871E9F4AA9A
tools\agent\netcore21-agent.dll
md5: B69998F8F7CFD2223DC8DEBCACA3D87D | sha1: 07DE4F97B212AB07C8789C7E6B9321857E018373 | sha256: 81DB07813E393726AA98D5D5202756FB73B01AFE1FBD85A15A175B2B52C7FA5B | sha512: BADCA9333164CD34066BE03FD8FEE6AD97AD435F994839B5EA0E5DB251C8B12E03A4ADE100615222FB8A30D6751A2EBC7DF2B535CA698EFE8360908449037260
tools\agent\netcore21-agent.pdb
 
tools\agent\netcore21-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\netcore21-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v2.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v2.1": {
      "netcore21-agent/2.2.0": {
        "dependencies": {
          "TestCentric.Agent.Core": "2.0.0-beta5",
          "TestCentric.Engine.Api": "2.0.0-beta5",
          "TestCentric.Extensibility": "3.0.0",
          "TestCentric.InternalTrace": "1.2.0",
          "TestCentric.Metadata": "3.0.2"
        },
        "runtime": {
          "netcore21-agent.dll": {}
        }
      },
      "TestCentric.Agent.Core/2.0.0-beta5": {
        "dependencies": {
          "TestCentric.InternalTrace": "1.2.0"
        },
        "runtime": {
          "lib/netstandard2.0/TestCentric.Agent.Core.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "TestCentric.Engine.Api/2.0.0-beta5": {
        "runtime": {
          "lib/netstandard2.0/TestCentric.Engine.Api.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "TestCentric.Extensibility/3.0.0": {
        "dependencies": {
          "TestCentric.InternalTrace": "1.2.0",
          "TestCentric.Metadata": "3.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/TestCentric.Extensibility.Api.dll": {
            "assemblyVersion": "3.0.0.0",
            "fileVersion": "3.0.0.0"
          },
          "lib/netstandard2.0/TestCentric.Extensibility.dll": {
            "assemblyVersion": "3.0.0.0",
            "fileVersion": "3.0.0.0"
          }
        }
      },
      "TestCentric.InternalTrace/1.2.0": {
        "runtime": {
          "lib/netstandard2.0/TestCentric.InternalTrace.dll": {
            "assemblyVersion": "1.2.0.0",
            "fileVersion": "1.2.0.0"
          }
        }
      },
      "TestCentric.Metadata/3.0.2": {
        "runtime": {
          "lib/netstandard2.0/TestCentric.Metadata.dll": {
            "assemblyVersion": "3.0.2.0",
            "fileVersion": "3.0.2.0"
          }
        }
      }
    }
  },
  "libraries": {
    "netcore21-agent/2.2.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "TestCentric.Agent.Core/2.0.0-beta5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ynBUF/oF1o7kmeNbHreiLV+PlpMX6Q7xoH3s/9jmlC5EOt2SWHB9jYk7sL78UiXqShg/hwySYNjkwNsSRMmv2Q==",
      "path": "testcentric.agent.core/2.0.0-beta5",
      "hashPath": "testcentric.agent.core.2.0.0-beta5.nupkg.sha512"
    },
    "TestCentric.Engine.Api/2.0.0-beta5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ymaH4k3nuRosgmBIO/8y4CHSDLhOg46nXliLqk8y20drcsUkh6LSD917knCvubNu9k6QobDznrCsi3Ptr4ibhQ==",
      "path": "testcentric.engine.api/2.0.0-beta5",
      "hashPath": "testcentric.engine.api.2.0.0-beta5.nupkg.sha512"
    },
    "TestCentric.Extensibility/3.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A8qLD5/QVFYhw5CqMPGHUltZhfipF2SI5CpNfK/t1qwPf+1SpNfVkWU5z0zUUxrIUHeTJuwe+OYbm+bnK1lk9g==",
      "path": "testcentric.extensibility/3.0.0",
      "hashPath": "testcentric.extensibility.3.0.0.nupkg.sha512"
    },
    "TestCentric.InternalTrace/1.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+ZfwSsy/wrUOwWm1zJNPWtFIcwNSH0ZqIjohgxHBZRk1YYiXw+O79unEOJotL5LU7pWTs0k732EGMWsbSQ67HQ==",
      "path": "testcentric.internaltrace/1.2.0",
      "hashPath": "testcentric.internaltrace.1.2.0.nupkg.sha512"
    },
    "TestCentric.Metadata/3.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OIwWFSIwPE7KsfxiX7z3D/hXCSb9d+6miB4pN8Vm2UfRVclDR0i1V8C4G58tjTYZfOQqwDTugOCeuvWXw7JFyQ==",
      "path": "testcentric.metadata/3.0.2",
      "hashPath": "testcentric.metadata.3.0.2.nupkg.sha512"
    }
  }
}
tools\agent\netcore21-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "netcoreapp2.1",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "2.1.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}
tools\agent\TestCentric.Agent.Core.dll
md5: 5BFB45FCE43095CB3B02922404FCE434 | sha1: 89BBCCA3D1CE286DBCDEAE6C8757B8DDC3ECC4F5 | sha256: 9295AECBEA9339426E001016A3EE96B168989A435118BB93016419BE0451B2AC | sha512: 4CE644E74F44EA1FFAF190FC19F3E477E0A0F88A69F52D510AFA656518219729F99B593363EC96C1310DFA91BD5888724D00C022B39DBDB8C0E104BBB8409266
tools\agent\TestCentric.Engine.Api.dll
md5: ABC723BF92D0818F523E836E55270C33 | sha1: 6CB50D21D81538BD81B85887DF506492A8A53415 | sha256: 563EBFD4B7D24CCBEA2C842FDDDFE880C4EC601F1CB1BB17898FB5BCD645E471 | sha512: 19FCF08A14568378E0D681C8477034F8556C8C5827AE38D784C77970C2E020DE07596F76EE64B3B479E0E7354036CCA4290B7751038B3C76C8B2AA7DC9AC7034
tools\agent\TestCentric.Extensibility.Api.dll
md5: D358A4F7DDF5A52227CA4098B2D7552E | sha1: B10A7F9BC42140B36A88E27C437713B1C9BF9CBF | sha256: F02ECE659B654969D06EEED348EC9BBDB0A0E1B208F1AA4E418F81251099D399 | sha512: 34A41505D5853E9037826A3B92C5B585DE1B3C96B0D225D4725E39FD7F71102B570653DDC2E3AFD55EA8A7897C08FD6BDAEE80D872AB876F743CC3555E5512A1
tools\agent\TestCentric.Extensibility.dll
md5: 914BB41EBBCFA7826A2168AFAB865721 | sha1: 09E9ADEC9943513C075BB9E81532E73F898F7294 | sha256: 46E0A1A87F0780994EA5C117296A831D95E4A51A2A58B358E068F1CA025B224C | sha512: A65BE2DDC4C02929783068BC72B19F4F4A741753A5C71F015F4196C74BBC6CEDDC102D52F82E1795CCCB521DB7DAABE9BD6EBC4448AB2DB8FDDA1CA25493ABE2
tools\agent\TestCentric.Metadata.dll
tools\agent\TestCentric.InternalTrace.dll
md5: B64B5F7A87BEA78717E6A08BBF1E0AFC | sha1: 8C528336CED5438C7EC03DF9DCCA4CCFAEA97C0D | sha256: 228DF7CA85471B9198BC7B056E1773583C00C800B48B9B94ABC0E0A9A7E2BEB7 | sha512: FF34F8B5FCCAB4E13FF1557FED98D63215D7C50184C07127018ED5AE9D6B8E4991CFF160302E14FA07843BD0A67EC5F52FC41E03826495791864E01E61CAEBA7

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 Core 2.1 Pluggable Agent Package

Ground Rules:

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