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:

8,440

Downloads of v 2.0.0-alpha8:

98

Last Update:

25 Apr 2023

Package Maintainer(s):

Software Author(s):

  • Charlie Poole

Tags:

testcentric nunit gui runner test centric testing tdd

TestCentric Runner for NUnit

This is a prerelease version of TestCentric Runner for NUnit.

  • 1
  • 2
  • 3

2.0.0-alpha8 | Updated: 25 Apr 2023

Downloads:

8,440

Downloads of v 2.0.0-alpha8:

98

Maintainer(s):

Software Author(s):

  • Charlie Poole

TestCentric Runner for NUnit 2.0.0-alpha8

This is a prerelease version of TestCentric Runner for NUnit.

  • 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 TestCentric Runner for NUnit, run the following command from the command line or from PowerShell:

>

To upgrade TestCentric Runner for NUnit, run the following command from the command line or from PowerShell:

>

To uninstall TestCentric Runner for NUnit, 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-gui -y --source="'INTERNAL REPO URL'" --version="'2.0.0-alpha8'" --prerelease [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-gui -y --source="'INTERNAL REPO URL'" --version="'2.0.0-alpha8'" --prerelease
$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-gui
  win_chocolatey:
    name: testcentric-gui
    version: '2.0.0-alpha8'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

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


chocolatey_package 'testcentric-gui' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.0.0-alpha8'
  options  '--prerelease'
end

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


cChocoPackageInstaller testcentric-gui
{
    Name        = "testcentric-gui"
    Version     = "2.0.0-alpha8"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'testcentric-gui':
  ensure          => '2.0.0-alpha8',
  install_options => ['--prerelease'],
  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 as a trusted package on 25 Apr 2023.

Description

The TestCentric Runner for NUnit (TestCentric) is a GUI runner aimed at eventually supporting a range of .NET testing frameworks. In the 1.x release series, we are concentrating on support of NUnit tests. The user interface is based on the layout and feature set of the of the original NUnit GUI, with the internals modified so as to run NUnit 3 tests.

This package includes the both the standard TestCentric GUI runner (testcentric.exe) and an experiental runner (tc-next.exe) which is available for... wait for it... experimentation! The package incorporates the TestCentric test engine, a modified version of the NUnit engine.

Features

Most features of the NUnit V2 Gui runner are supported. See CHANGES.txt for more detailed information.

NUnit engine extensions are supported but no extensions are bundled with the GUI itself. They must be installed separately using chocolatey. In particular, to run NUnit V2 tests, you should install the NUnit V2 Framework Driver Extension.

Warning: When using the GUI chocolatey package, only chocolatey-packaged extensions will be availble. This is by design.

Prerequisites

TestCentric requires .NET 4.5 or later in order to function, although your tests may run in a separate process under other framework versions.

Projects with tests to be run under TestCentric must already have some version of the NUnit framework installed separtely.


tools\LICENSE.txt
cCopyright (c) 2018-2019 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\NOTICES.txt
The TestCentric GUI Runner 1.0 is based in part on the NUnit 2.x GUI Runner, 
with portions of the code...

    Copyright (c) 2002-2014 Charlie Poole or 
    Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or 
    Copyright (c) 2000-2002 Philip A. Craig

The TestCentric GUI Runner uses the NUnit 3 Test Engine to run tests...

    Copyright (c) 2017-2019 Charlie Poole, Rob Prouse
tools\CHANGES.txt
For the latest list of changes to the TestCentric Runner, please see the
release notes at https://test-centric.org/testcentric-gui/release-notes.html
tools\testcentric.png
 
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 author of the software, Charlie Poole.
Any binaries will be identical to other package types published by the 
author at https://github.com/TestCentric/testcentric-gui.
tools\testcentric-agent.exe.ignore
 
tools\testcentric-agent-x86.exe.ignore
 
tools\testcentric.choco.addins
 
tools\testcentric.exe
md5: 1E184D3B36BA5B01D92C3029150E2094 | sha1: 680196C8C6D00BC57987C4D5A8457A64BCE52C9C | sha256: A27A4E9E7D5601F6AC17323ACD1D4C7F27C4A9DF74FE17A3CDC1B333E6C1EBF2 | sha512: 82375CEC0F3868C507A841FC451E1CCE74FD41B7C3D8B550E80C8F7559E28CDCD1A9CC79142254ECBF86E67A2143A51BCFD541309263BCECF638FC6F16CACB18
tools\testcentric.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   The GUI only runs under .NET 2.0 or higher. The
   useLegacyV2RuntimeActivationPolicy setting only
   applies under .NET 4.0 and permits use of mixed 
   mode assemblies, which would otherwise not load 
   correctly.
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!-- Comment out the next line to force use of .NET 4.0 -->
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  </startup>
  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />
    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />
    <!-- Look for addins in the addins directory for now -->
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <probing privatePath="lib;addins" />
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections.Concurrent" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.EventBasedAsync" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Data.Common" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Contracts" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Debug" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.StackTrace" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Tools" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Dynamic.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Globalization" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Globalization.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Expressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Queryable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.NetworkInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Requests" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Sockets" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ObjectModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Resources.ResourceManager" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Numerics" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Json" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Xml" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.3.0.0" newVersion="4.3.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Principal" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.SecureString" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.Encoding" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.Encoding.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.RegularExpressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Overlapped" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Tasks.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Timer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.ReaderWriter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XmlSerializer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
tools\TestCentric.Gui.Runner.dll
md5: 6F6DED61388B9BC7B5CC3201DE4305AE | sha1: C08423AF54B73C8BCD2ABB5BDF8A84BE97AA7252 | sha256: 6B80B0659D0B80AEBC9E381AE6022D8B7931189AC285C097F5A2D107F3C4274E | sha512: B08BF7A3F6ECDC9B83F3C01101540E2C40C4BDF8386FD743C9F818B8F7FD8D8567BCB15340E8C70FB1E340A1F2BF1FC33246FB91D62FC1B669DA70CC29ECF498
tools\nunit.uiexception.dll
md5: AF23DC8A45AF2EE36538B7235D2B2F6D | sha1: B0BA9958118EBFD0D32E38F9C3402F5BF070A2DE | sha256: 5BE531F6BB2274C7D502C6AAE419174803D0EB0A7D1B66FAB311DB42B1732B09 | sha512: 84EBA3120E10E4EE4C76A94EAE2E520E185E5C6C359A0B0CEFE8B90E5AAD8398747AFC0B718CDC0C7426B284BB58F7B201785D4B30F3AC2C179ED281327F9ABB
tools\TestCentric.Gui.Model.dll
md5: 801B2F79D5F9F0155E8D5608DA6E268A | sha1: 9B513487438784C6A677127AE111F9BC6D622A8C | sha256: D8CCC15956B276D5EB90DFFAC12FFD5908801F4423346DB07C198A4ED76CDDBF | sha512: 153F4D01D1ADD4B117A342115DA21FBBC8BCE8E6D68F4B33E33FFE29E978B11288E26D917BE139FCEE5CE6DB95A30719129956C7214A1B2601D3D7C61FB67FC8
tools\Mono.Options.dll
md5: 9915460C3376FD883C2B53487A5F9EF1 | sha1: EB5AADE056D17AA71584B89E42FECD84A0248382 | sha256: 02F97BD6698C9F073F97F83157AAB223C7F15FF5B39EE0D82C89FCF5A1BDE315 | sha512: 5EF923C200582F37238B291BE16926EE58F5AF75F49E7B21900CDCB41CB5D97D9527508B443F5D3C416DC7969B6A5537DAD717B4315F75698206654EE6AA0541
tools\nunit.engine.api.dll
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
tools\testcentric.engine.api.dll
md5: 8BC009F6ADE5275213ED9FF221D72E41 | sha1: 1E7E1FFE978F2D1A05510606BC1EA111C2BF09D5 | sha256: CF8D27F87AE23FFCC6E17C573154013B6676E54D23ECEE6B5E12D80F635699AC | sha512: 851A128259F10B98ECB0F2BD030ABE6367A5361A12D18A5E98F5D85B9811367E7D9B92DFDEE8BF610B943DC6D9F40099BE6E206060AD4C450E0B6D2245A516FD
tools\testcentric.engine.metadata.dll
tools\testcentric.extensibility.dll
md5: EEE26F63A3198427CC494C773DFC9C91 | sha1: C9559108B7EBE46D7E75DB7E49AA13707DFAAF25 | sha256: 7A7D7BB534797338E71BB03C570E2384E295752F1859CC03DE1D048306B6CB00 | sha512: 721D2F0DD4200C5A6D145AE50C5EA7E8EBB9D11E1E37D3B92AE299B612A96421917ABAC0FFD07B8F42D5290D5097175EB5A0DEB69EF7095B5DD698CEE9EFAC84
tools\testcentric.engine.core.dll
md5: 4B831F89D9B45674FFA3687B33A939DB | sha1: 1F9D00BDBC3266F897BD00B86E50EE99B8EE5B3E | sha256: 2A52097087F504A146130857C8F6F356146F545335ACCBE004C03FB4C9DE1A53 | sha512: 07387174E8B6A5AB55B12D3D3BB909BB946DEECBCA0AF26352904A16E10D8E18F690B2725FA221BFED2E736AE754A0140A002A6DB7EC590E5CC061C227F90DA6
tools\testcentric.engine.dll
md5: E3550FDD56AFE6C762555F6AA89AC320 | sha1: 8BB1107B173CA797F5C1D48426F2C5B6D6068DAE | sha256: EF3C1350D6FA528EFEA50D77FBAFF70A856DB557E228778A7B3B04CA5B75636C | sha512: 19F128027CFB817B07FAC769172777899636CF0E43F0EC58B2A9592280DB2863758BD7A6FF2B7D2F68A9F6A67575574D4320878ABED0EF5A430DB8DA82D1BCCE
tools\Images\RunTests.png
 
tools\Images\DebugTests.png
 
tools\Images\GroupBy_16x.png
 
tools\Images\StopRun.png
 
tools\Images\SummaryReport.png
 
tools\Images\Tree\Circles\Failure.jpg
 
tools\Images\Tree\Circles\Ignored.jpg
 
tools\Images\Tree\Circles\Inconclusive.jpg
 
tools\Images\Tree\Circles\Skipped.jpg
 
tools\Images\Tree\Circles\Success.jpg
 
tools\Images\Tree\Classic\Failure.jpg
 
tools\Images\Tree\Classic\Ignored.jpg
 
tools\Images\Tree\Classic\Inconclusive.jpg
 
tools\Images\Tree\Classic\Skipped.jpg
 
tools\Images\Tree\Classic\Success.jpg
 
tools\Images\Tree\Default\Failure.png
 
tools\Images\Tree\Default\Ignored.png
 
tools\Images\Tree\Default\Inconclusive.png
 
tools\Images\Tree\Default\Skipped.png
 
tools\Images\Tree\Default\Success.png
 
tools\Images\Tree\Visual Studio\Failure.png
 
tools\Images\Tree\Visual Studio\Ignored.png
 
tools\Images\Tree\Visual Studio\Inconclusive.png
 
tools\Images\Tree\Visual Studio\Skipped.png
 
tools\Images\Tree\Visual Studio\Success.png
 
tools\agents\net462\nunit.engine.api.dll
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
tools\agents\net462\testcentric.engine.metadata.dll
tools\agents\net462\testcentric.extensibility.dll
md5: EEE26F63A3198427CC494C773DFC9C91 | sha1: C9559108B7EBE46D7E75DB7E49AA13707DFAAF25 | sha256: 7A7D7BB534797338E71BB03C570E2384E295752F1859CC03DE1D048306B6CB00 | sha512: 721D2F0DD4200C5A6D145AE50C5EA7E8EBB9D11E1E37D3B92AE299B612A96421917ABAC0FFD07B8F42D5290D5097175EB5A0DEB69EF7095B5DD698CEE9EFAC84
tools\agents\net462\testcentric.engine.core.dll
md5: 4B831F89D9B45674FFA3687B33A939DB | sha1: 1F9D00BDBC3266F897BD00B86E50EE99B8EE5B3E | sha256: 2A52097087F504A146130857C8F6F356146F545335ACCBE004C03FB4C9DE1A53 | sha512: 07387174E8B6A5AB55B12D3D3BB909BB946DEECBCA0AF26352904A16E10D8E18F690B2725FA221BFED2E736AE754A0140A002A6DB7EC590E5CC061C227F90DA6
tools\agents\net462\testcentric-agent.exe
md5: 213341873F37E088413A84CAD504294F | sha1: 5F20F7C61916CB0173F40786DC5CBC2F549D1E5D | sha256: 3DFD75F8FEDF226F12359F3C2880B4534875E244D4D8A5C3288B7FFF42FC4F35 | sha512: 03582E405EFF3D4132DC0F9F90502BE4CFE3F015052B5AB74F3680C9EEFB5ED2DDF7FF99BF851CFB2F97F262173B537C095140C24094D887B57DF3B12524B151
tools\agents\net462\testcentric-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\agents\net462\testcentric-agent-x86.exe
md5: 1AD85375DB8325DD49D5E5252F19B250 | sha1: 4012DBF8D9C26DC09EBAFDC23FFFEF003B431ABA | sha256: 045922B75FBEE4B640C3DC3BEDF724166AAA386AE67706AC4BCB9FDF2695154E | sha512: 01879FA893CCBE879C1A60FEE1E64114F67D154F5FC37EF1031355C7E6677562C733980D2EF4C78BCE50664F6F0E2B962107B12299E3C4325CB1E3FC4B9E7043
tools\agents\net462\testcentric-agent-x86.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\agents\net462\testcentric-agent.choco.addins
 
tools\agents\net6.0\nunit.engine.api.dll
md5: 1D883ED87BF005CFC00074C8D0E9A006 | sha1: 9631502093B6F89C7A1E0EC0D505966AA1AA85B1 | sha256: 2556FF7E98446FB932EA6361DB1E8872A0412BCA936712CD2840487E5EA251B6 | sha512: 57DB5CE5218C720B64D58B9F72F63FF1242A1D4D6F3149599F700B82A045B5EB45793FFAE55A00E46ABA84E948972CFBF5877824466040A310028FDB45981FB0
tools\agents\net6.0\testcentric.engine.metadata.dll
tools\agents\net6.0\testcentric.extensibility.dll
md5: D7457FB46F6E96AA68F2412B4ED83207 | sha1: 5D227CA4F3B0F7D3AAEE51A969412F2749296426 | sha256: D576A56638536E413D7893C0FD08BFC934C13667765C24973C7581DDDA7B7756 | sha512: 8920B79F6673536D7C576EB615CAF491818BAFBBF4D82BC92F57300149A6227219FD75AE5DACF15838B9493C4FD99F46A525C3A14D4FF4803303B0B09732E1F5
tools\agents\net6.0\Microsoft.Extensions.DependencyModel.dll
md5: 8C222EE9AF624C8A47F04AC0F0ED5D27 | sha1: 88E6D44DF0C532CF70FAF3CC0ADDE67D416ECE0D | sha256: 693AD69D561F8533C9C45C41D8BCD9810547E2E862DFFB275B10B5EB0DAB9A6B | sha512: D0CE6201B3123A0311CB116DB62F6253223810A78BC3E025B9748A05A2285A41B256C180F7E7AA75202D6151365C2E07486C9B6FC7B939E1EFED9B54C84A0BE9
tools\agents\net6.0\testcentric.engine.core.dll
md5: 1902867D7D53C383F670D86905A3A4E1 | sha1: 26E513A15461363C3CC27BA4CFB03DEEF8BCC21F | sha256: B9156239BAEC56A3C0FE64A925F6BAFB67F59AAFAAEC82F28EECD6865C023323 | sha512: 459FB85226236C2EAAD97017FF3FF090CB29E0B706D2D7BBD6AE7493BF96E69B81F7FE282D8B8DB28820AD3B643208D3ABD3D5B2CE4764A075C7CB2DC343C7D9
tools\agents\net6.0\testcentric-agent.dll
md5: AEC5FF6BBE3B422C4FBAB96DF74340F0 | sha1: 8E67507BEA3C469DFC3DC15586BE27BE2B003CBA | sha256: D3675EC94BD98EDDF3539D7312D5EAC55E7D18CEEED932BE439C1695B84EE70E | sha512: 5F41A962143C0EABBA4CEF96088BB4930847F0FB2EEF44B1E34485EED215FD518632C96BE0C60F71793343812D438977042B4C36C3C26DBE0DB47B225116208A
tools\agents\net6.0\testcentric-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\agents\net6.0\testcentric-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v6.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v6.0": {
      "testcentric-agent/2.0.0-dev00064": {
        "dependencies": {
          "testcentric.engine.core": "2.0.0-IDE"
        },
        "runtime": {
          "testcentric-agent.dll": {}
        }
      },
      "Microsoft.Extensions.DependencyModel/3.1.0": {
        "dependencies": {
          "System.Text.Json": "4.7.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
            "assemblyVersion": "3.1.0.0",
            "fileVersion": "3.100.19.56502"
          }
        }
      },
      "Microsoft.NETCore.Platforms/1.1.0": {},
      "Microsoft.NETCore.Targets/1.1.0": {},
      "Microsoft.Win32.Registry/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "NUnit.Engine.Api/3.16.2": {
        "runtime": {
          "lib/netstandard2.0/nunit.engine.api.dll": {
            "assemblyVersion": "3.0.0.0",
            "fileVersion": "3.99.0.0"
          }
        }
      },
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Json/4.7.0": {},
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "TestCentric.Metadata/2.0.0": {
        "runtime": {
          "lib/netstandard2.0/testcentric.engine.metadata.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "testcentric.engine.core/2.0.0-IDE": {
        "dependencies": {
          "Microsoft.Extensions.DependencyModel": "3.1.0",
          "Microsoft.Win32.Registry": "4.3.0",
          "NUnit.Engine.Api": "3.16.2",
          "TestCentric.Metadata": "2.0.0",
          "testcentric.extensibility": "1.0.0"
        },
        "runtime": {
          "testcentric.engine.core.dll": {}
        }
      },
      "testcentric.extensibility/1.0.0": {
        "dependencies": {
          "NUnit.Engine.Api": "3.16.2",
          "TestCentric.Metadata": "2.0.0"
        },
        "runtime": {
          "testcentric.extensibility.dll": {}
        }
      }
    }
  },
  "libraries": {
    "testcentric-agent/2.0.0-dev00064": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Microsoft.Extensions.DependencyModel/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8tBjqI1xU3CNjdXMZF7BaY71ChU44x30QtHI2rVmPB3+3PjYi+YGhVTV5+IOlc40F81Bylh4gWwHET3jVKFE4Q==",
      "path": "microsoft.extensions.dependencymodel/3.1.0",
      "hashPath": "microsoft.extensions.dependencymodel.3.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
      "path": "microsoft.netcore.platforms/1.1.0",
      "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
      "path": "microsoft.netcore.targets/1.1.0",
      "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NNSECvqPXwBTqOLTu3VqNo6DT5zEI2hrBWzEh/uzMfb5+j/5T/k1Fn3dKZfj07OFu7D+cKzxPKajIYpB+H5tpQ==",
      "path": "microsoft.win32.registry/4.3.0",
      "hashPath": "microsoft.win32.registry.4.3.0.nupkg.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"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
      "path": "system.globalization/4.3.0",
      "hashPath": "system.globalization.4.3.0.nupkg.sha512"
    },
    "System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
      "path": "system.runtime.handles/4.3.0",
      "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
      "path": "system.runtime.interopservices/4.3.0",
      "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Text.Json/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IPq/x/d5nAcnD3vIyM3AbPOaTgcqrh0AqPSx7U53UFu3M6k1TH1u/eXc9/h4jm/3mpP1WRUpevlPY4PACd7AWw==",
      "path": "system.text.json/4.7.0",
      "hashPath": "system.text.json.4.7.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "TestCentric.Metadata/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uxQYLwa3uX33zm2K9OA75C6uxA2ztOf5cKR2M5sqQxiMxw95IA1gRaKkzUnhu51ez/rJEHqmpmCsccCf+t8dLg==",
      "path": "testcentric.metadata/2.0.0",
      "hashPath": "testcentric.metadata.2.0.0.nupkg.sha512"
    },
    "testcentric.engine.core/2.0.0-IDE": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "testcentric.extensibility/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\agents\net6.0\testcentric-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net6.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "6.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}
tools\agents\net6.0\testcentric-agent.choco.addins
 
tools\agents\net7.0\nunit.engine.api.dll
md5: 1D883ED87BF005CFC00074C8D0E9A006 | sha1: 9631502093B6F89C7A1E0EC0D505966AA1AA85B1 | sha256: 2556FF7E98446FB932EA6361DB1E8872A0412BCA936712CD2840487E5EA251B6 | sha512: 57DB5CE5218C720B64D58B9F72F63FF1242A1D4D6F3149599F700B82A045B5EB45793FFAE55A00E46ABA84E948972CFBF5877824466040A310028FDB45981FB0
tools\agents\net7.0\testcentric.engine.metadata.dll
tools\agents\net7.0\testcentric.extensibility.dll
md5: D7457FB46F6E96AA68F2412B4ED83207 | sha1: 5D227CA4F3B0F7D3AAEE51A969412F2749296426 | sha256: D576A56638536E413D7893C0FD08BFC934C13667765C24973C7581DDDA7B7756 | sha512: 8920B79F6673536D7C576EB615CAF491818BAFBBF4D82BC92F57300149A6227219FD75AE5DACF15838B9493C4FD99F46A525C3A14D4FF4803303B0B09732E1F5
tools\agents\net7.0\Microsoft.Extensions.DependencyModel.dll
md5: 8C222EE9AF624C8A47F04AC0F0ED5D27 | sha1: 88E6D44DF0C532CF70FAF3CC0ADDE67D416ECE0D | sha256: 693AD69D561F8533C9C45C41D8BCD9810547E2E862DFFB275B10B5EB0DAB9A6B | sha512: D0CE6201B3123A0311CB116DB62F6253223810A78BC3E025B9748A05A2285A41B256C180F7E7AA75202D6151365C2E07486C9B6FC7B939E1EFED9B54C84A0BE9
tools\agents\net7.0\testcentric.engine.core.dll
md5: 1902867D7D53C383F670D86905A3A4E1 | sha1: 26E513A15461363C3CC27BA4CFB03DEEF8BCC21F | sha256: B9156239BAEC56A3C0FE64A925F6BAFB67F59AAFAAEC82F28EECD6865C023323 | sha512: 459FB85226236C2EAAD97017FF3FF090CB29E0B706D2D7BBD6AE7493BF96E69B81F7FE282D8B8DB28820AD3B643208D3ABD3D5B2CE4764A075C7CB2DC343C7D9
tools\agents\net7.0\testcentric-agent.dll
md5: A1EDE458820EE09F4BBBF399F0F3E2E7 | sha1: 1D2A94A25F74BAB74E6997B90BB6E39E0CBC399C | sha256: 170BF4749622E30805556185ADED20DEC609D7458984025505DA3CB9927B83EF | sha512: 405DA3323DB65061ED4FA71F9CFAE8EF08D7E9ED4580A9355B460B3B7B2AE88275AD0CB615966F7BE57DFCEBF4B95F933529DDEE4C63EE7DE16F263A3FAA5FC0
tools\agents\net7.0\testcentric-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\agents\net7.0\testcentric-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v7.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v7.0": {
      "testcentric-agent/2.0.0-dev00064": {
        "dependencies": {
          "testcentric.engine.core": "2.0.0-IDE"
        },
        "runtime": {
          "testcentric-agent.dll": {}
        }
      },
      "Microsoft.Extensions.DependencyModel/3.1.0": {
        "dependencies": {
          "System.Text.Json": "4.7.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
            "assemblyVersion": "3.1.0.0",
            "fileVersion": "3.100.19.56502"
          }
        }
      },
      "Microsoft.NETCore.Platforms/1.1.0": {},
      "Microsoft.NETCore.Targets/1.1.0": {},
      "Microsoft.Win32.Registry/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "NUnit.Engine.Api/3.16.2": {
        "runtime": {
          "lib/netstandard2.0/nunit.engine.api.dll": {
            "assemblyVersion": "3.0.0.0",
            "fileVersion": "3.99.0.0"
          }
        }
      },
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Json/4.7.0": {},
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "TestCentric.Metadata/2.0.0": {
        "runtime": {
          "lib/netstandard2.0/testcentric.engine.metadata.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "testcentric.engine.core/2.0.0-IDE": {
        "dependencies": {
          "Microsoft.Extensions.DependencyModel": "3.1.0",
          "Microsoft.Win32.Registry": "4.3.0",
          "NUnit.Engine.Api": "3.16.2",
          "TestCentric.Metadata": "2.0.0",
          "testcentric.extensibility": "1.0.0"
        },
        "runtime": {
          "testcentric.engine.core.dll": {}
        }
      },
      "testcentric.extensibility/1.0.0": {
        "dependencies": {
          "NUnit.Engine.Api": "3.16.2",
          "TestCentric.Metadata": "2.0.0"
        },
        "runtime": {
          "testcentric.extensibility.dll": {}
        }
      }
    }
  },
  "libraries": {
    "testcentric-agent/2.0.0-dev00064": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Microsoft.Extensions.DependencyModel/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8tBjqI1xU3CNjdXMZF7BaY71ChU44x30QtHI2rVmPB3+3PjYi+YGhVTV5+IOlc40F81Bylh4gWwHET3jVKFE4Q==",
      "path": "microsoft.extensions.dependencymodel/3.1.0",
      "hashPath": "microsoft.extensions.dependencymodel.3.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
      "path": "microsoft.netcore.platforms/1.1.0",
      "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
      "path": "microsoft.netcore.targets/1.1.0",
      "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NNSECvqPXwBTqOLTu3VqNo6DT5zEI2hrBWzEh/uzMfb5+j/5T/k1Fn3dKZfj07OFu7D+cKzxPKajIYpB+H5tpQ==",
      "path": "microsoft.win32.registry/4.3.0",
      "hashPath": "microsoft.win32.registry.4.3.0.nupkg.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"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
      "path": "system.globalization/4.3.0",
      "hashPath": "system.globalization.4.3.0.nupkg.sha512"
    },
    "System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
      "path": "system.runtime.handles/4.3.0",
      "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
      "path": "system.runtime.interopservices/4.3.0",
      "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Text.Json/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IPq/x/d5nAcnD3vIyM3AbPOaTgcqrh0AqPSx7U53UFu3M6k1TH1u/eXc9/h4jm/3mpP1WRUpevlPY4PACd7AWw==",
      "path": "system.text.json/4.7.0",
      "hashPath": "system.text.json.4.7.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "TestCentric.Metadata/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uxQYLwa3uX33zm2K9OA75C6uxA2ztOf5cKR2M5sqQxiMxw95IA1gRaKkzUnhu51ez/rJEHqmpmCsccCf+t8dLg==",
      "path": "testcentric.metadata/2.0.0",
      "hashPath": "testcentric.metadata.2.0.0.nupkg.sha512"
    },
    "testcentric.engine.core/2.0.0-IDE": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "testcentric.extensibility/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\agents\net7.0\testcentric-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net7.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "7.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}
tools\agents\net7.0\testcentric-agent.choco.addins
 

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-gui 2.0.0-beta4 100 Thursday, November 23, 2023 Approved
testcentric-gui 2.0.0-beta3-1 58 Wednesday, October 25, 2023 Approved
testcentric-gui 2.0.0-beta3 16 Sunday, October 22, 2023 Exempted
testcentric-gui 2.0.0-beta2 63 Monday, September 4, 2023 Approved
TestCentric Runner for NUnit 2.0.0-beta1 129 Tuesday, May 9, 2023 Exempted
TestCentric Runner for NUnit 2.0.0-alpha8 98 Tuesday, April 25, 2023 Approved
TestCentric Runner for NUnit 2.0.0-alpha7 52 Monday, February 6, 2023 Approved
TestCentric Runner for NUnit 2.0.0-alpha6 89 Saturday, June 18, 2022 Approved
TestCentric Runner for NUnit 2.0.0-alpha5 76 Saturday, May 14, 2022 Approved
TestCentric Runner for NUnit 2.0.0-alpha4 174 Sunday, October 3, 2021 Approved
TestCentric Runner for NUnit 2.0.0-alpha3 71 Thursday, September 30, 2021 Approved
TestCentric Runner for NUnit 2.0.0-alpha2 214 Sunday, August 15, 2021 Approved
TestCentric Runner for NUnit 2.0.0-alpha1 110 Thursday, July 1, 2021 Approved
TestCentric Runner for NUnit 1.6.3 164 Monday, August 1, 2022 Approved
TestCentric Runner for NUnit 1.6.2 618 Thursday, March 25, 2021 Approved
TestCentric Runner for NUnit 1.6.1 218 Sunday, January 17, 2021 Approved
TestCentric Runner for NUnit 1.6.0 149 Monday, January 11, 2021 Approved
TestCentric Runner for NUnit 1.5.3 142 Thursday, December 24, 2020 Approved
TestCentric Runner for NUnit 1.5.2 159 Thursday, December 17, 2020 Approved
TestCentric Runner for NUnit 1.5.1 132 Tuesday, December 15, 2020 Approved
TestCentric Runner for NUnit 1.5.0 130 Wednesday, December 9, 2020 Approved
TestCentric Runner for NUnit 1.4.1 275 Friday, September 4, 2020 Approved
TestCentric Runner for NUnit 1.4.0 461 Friday, May 1, 2020 Approved
TestCentric Runner for NUnit 1.3.3 194 Saturday, April 18, 2020 Approved
TestCentric Runner for NUnit 1.3.3-rc1 140 Friday, April 17, 2020 Approved
TestCentric Runner for NUnit 1.3.2 222 Tuesday, April 7, 2020 Approved
TestCentric Runner for NUnit 1.3.1 240 Saturday, March 7, 2020 Approved
TestCentric Runner for NUnit 1.3.0 199 Tuesday, February 25, 2020 Approved
TestCentric Runner for NUnit 1.2.0 210 Sunday, February 16, 2020 Approved
TestCentric Runner for NUnit 1.1.0 401 Saturday, November 9, 2019 Approved
TestCentric Runner for NUnit 1.0.1 280 Friday, August 16, 2019 Approved
TestCentric Runner for NUnit 1.0.0 260 Saturday, July 27, 2019 Approved
TestCentric Runner for NUnit 1.0-beta4 202 Wednesday, July 17, 2019 Exempted
TestCentric Runner for NUnit 1.0-beta3 173 Sunday, July 14, 2019 Exempted
TestCentric Runner for NUnit 1.0-beta2 203 Thursday, May 30, 2019 Exempted
TestCentric Runner for NUnit 1.0-beta 205 Saturday, April 13, 2019 Exempted
TestCentric Runner for NUnit 1.0-alpha4 210 Saturday, April 6, 2019 Exempted
TestCentric Runner for NUnit 1.0-alpha3 189 Wednesday, February 27, 2019 Exempted
TestCentric Runner for NUnit 1.0-alpha2 214 Tuesday, November 13, 2018 Exempted
TestCentric Runner for NUnit 1.0-alpha1 222 Friday, August 3, 2018 Exempted

This package has no dependencies.

Discussion for the TestCentric Runner for NUnit Package

Ground Rules:

  • This discussion is only about TestCentric Runner for NUnit and the TestCentric Runner for NUnit 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 Runner for NUnit, 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