Downloads:
779
Downloads of v 2.0.0:
135
Last Update:
03 Dec 2021
Package Maintainer(s):
Software Author(s):
- Charlie Poole
Tags:
net20-pluggable-agent testcentric nunit extension pluggable agent net20TestCentric Extension - Net20 Pluggable Agent
This is not the latest version of TestCentric Extension - Net20 Pluggable Agent available.
- 1
- 2
- 3
2.0.0 | Updated: 03 Dec 2021
Downloads:
779
Downloads of v 2.0.0:
135
Maintainer(s):
Software Author(s):
- Charlie Poole
TestCentric Extension - Net20 Pluggable Agent 2.0.0
This is not the latest version of TestCentric Extension - Net20 Pluggable Agent available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Charlie Poole. The inclusion of Charlie Poole trademark(s), if any, upon this webpage is solely to identify Charlie Poole goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install TestCentric Extension - Net20 Pluggable Agent, run the following command from the command line or from PowerShell:
To upgrade TestCentric Extension - Net20 Pluggable Agent, run the following command from the command line or from PowerShell:
To uninstall TestCentric Extension - Net20 Pluggable Agent, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download nunit-extension-net20-pluggable-agent --internalize --version=2.0.0 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade nunit-extension-net20-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-net20-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-net20-pluggable-agent
win_chocolatey:
name: nunit-extension-net20-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-net20-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-net20-pluggable-agent
{
Name = "nunit-extension-net20-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-net20-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.
This package was approved by moderator flcdrg on 24 Dec 2021.
This extension allow the TestCentric GUI to run tests under the .NET 2.0 framework.
md5: DF1672EEA3583ADB8910994BD18DFA2F | sha1: BA948FAF3602BC327B27E171B308E1786B9AD710 | sha256: 52FA2B9DC53F5D0776B0375C13355D519A63E81546205CAB02A370C419B662A6 | sha512: 22ECF5DCBF2F1A823F0647A79F6817AC0DDB233757A4C6F12F782339B848CBCFD7C28DB07E4D802E411AC067C174AC4CAD2723FEF08E75156BE9E561BD1AE9C2
<?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>
md5: 2154C6C0CFE3FB380DCF29C0EEFB7D81 | sha1: ED12911DAD756F8F49A0286524D98C50D9FF5365 | sha256: 92D3E4CAE31A8D72BAAFEAF71AD20AADB763424CF34D54D1D4DD5E991515C58B | sha512: 0FE521641DC9D5872C3F840827CF89AB50E1570BD733698785A579DBA3B8F86830822676F62317C378EAFDE19492853F0C302F14D780C8FD23D281D66930C5AB
<?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>
md5: 99F353A5F90ABE7DA6FE2BD7774ED7AD | sha1: CDF8DD3EA5218AD13C79CB9F88CBD6D82883B581 | sha256: 7890196052C263E98377DFE11FD5AF6D2BBBC878DADD99A5FE4023C5E12CCCCB | sha512: 3C5626EB91D0D3D3E21E71C044AE3E60F91E702F93C8FABDB34576809E43CF8AC0BC959E732088F52CA35A7A69EA5220B34E9DBFEFA7B4839FD104AE67F7AB04
md5: 97A7B084588DA7F80D8D65A1DA619FE8 | sha1: A3848919EEE13188D9A98ACE73904ED072E4F378 | sha256: 5699AB8C3DB0A374363310F405489FA449322F6DD6A9B682D906AF1D8DA9AFA9 | sha512: 48D99C52CDE860866EC79F162205B36F1E351236DF7BE6C6E19B005BB24EAB5DD9D61412BD8EEA5D89EF6480F334A35327477216707886E933DE088BC1D34D27
TestCentric Net20 Pluggable Agent 1.0.0 - March 30, 2021
This is the initial release of the net20 pluggable agent and is the first
pluggable agent released. Pluggable agents allow the TestCentric Engine
to support agents for executing tests beyond those that are built in.
TestCentric Net20 Pluggable Agent 2.0.0 - December 2, 2021
This release of the net20 pluggable agent is compatible with the TestCentric
2.0 GUI and engine, which is still in development at the time of release.
It should not be used with any earlier versions of the GUI.
Features
* 2 Distribute pluggable agent as nuget and chocolatey packages
* 5 Update net20-pluggable-agent to work with latest 2.0.0 engine package
Build
* 14 Use TestCentric.Cake.Recipe for building agent
* 16 Add publishing and release to the build script
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.
md5: F6560F95E8E7AF56465C50FDC06989BD | sha1: 4606F3CD0384ECDC44DD477608F4038349362950 | sha256: 889C38C5706FC572B33F2706D0DD653E1C3B1899DB47E10E56F7BA47D594BB4F | sha512: 1E595756171BFE3BC2BF54D0E1E5D8EF274137CCEBAC6F48798C895260F7C4660C342D692CFF3BCD4870F72D656EDA8F46E49CEF9ED65B235EEB1866BD966BF1
md5: 99F353A5F90ABE7DA6FE2BD7774ED7AD | sha1: CDF8DD3EA5218AD13C79CB9F88CBD6D82883B581 | sha256: 7890196052C263E98377DFE11FD5AF6D2BBBC878DADD99A5FE4023C5E12CCCCB | sha512: 3C5626EB91D0D3D3E21E71C044AE3E60F91E702F93C8FABDB34576809E43CF8AC0BC959E732088F52CA35A7A69EA5220B34E9DBFEFA7B4839FD104AE67F7AB04
md5: EC9DB6052580E9C2CEE4C3F383F86A2E | sha1: 904FF1B27BF830E58EE66BBD10766FC0467D90B9 | sha256: C5605FDB1E5B75DA80C9ACCF31BD1E07E0B3DE3AFBC8441582A48D06F450608F | sha512: E3938FF4CBF85239AD904E8F137AF151BF8C4E35D915537E7D245EE4ADE9D10D4B44A3635BF08DA9271C85A3E3973F0E7FDBA3FD1C0F3ECAD3911C656AF9034D
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.
Log in or click on link to see number of positives.
- nunit.engine.api.dll (7890196052c2) - ## / 66
- nunit-extension-net20-pluggable-agent.2.0.0.nupkg (911025aa161f) - ## / 62
- net20-agent-launcher.dll (889c38c5706f) - ## / 64
- testcentric.engine.api.dll (c5605fdb1e5b) - ## / 66
- net20-pluggable-agent-x86.exe (52fa2b9dc53f) - ## / 66
- net20-pluggable-agent.exe (92d3e4cae31a) - ## / 66
- testcentric.engine.core.dll (5699ab8c3db0) - ## / 65
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 |
---|---|---|---|---|
.NET 2.0 Pluggable Agent 2.1.1 | 528 | Monday, September 11, 2023 | Approved | |
TestCentric Extension - Net20 Pluggable Agent 2.1.0 | 116 | Saturday, April 15, 2023 | Approved | |
TestCentric Extension - Net20 Pluggable Agent 2.0.0 | 135 | Friday, December 3, 2021 | Approved |
Copyright (c) 2021 Charlie Poole
This package has no dependencies.
Ground Rules:
- This discussion is only about TestCentric Extension - Net20 Pluggable Agent and the TestCentric Extension - Net20 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 - Net20 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.