Downloads:
19,663
Downloads of v 3.9.0:
8,617
Last Update:
27 Sep 2021
Package Maintainer(s):
Software Author(s):
- Charlie Poole
Tags:
nunit test testing tdd runnerNUnit 3 - Visual Studio Project Loader Extension
- 1
- 2
- 3
3.9.0 | Updated: 27 Sep 2021
Downloads:
19,663
Downloads of v 3.9.0:
8,617
Maintainer(s):
Software Author(s):
- Charlie Poole
NUnit 3 - Visual Studio Project Loader Extension 3.9.0
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
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install NUnit 3 - Visual Studio Project Loader Extension, run the following command from the command line or from PowerShell:
To upgrade NUnit 3 - Visual Studio Project Loader Extension, run the following command from the command line or from PowerShell:
To uninstall NUnit 3 - Visual Studio Project Loader Extension, 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-vs-project-loader --internalize --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-vs-project-loader -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade nunit-extension-vs-project-loader -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install nunit-extension-vs-project-loader
win_chocolatey:
name: nunit-extension-vs-project-loader
version: '3.9.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-vs-project-loader' do
action :install
source 'INTERNAL REPO URL'
version '3.9.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller nunit-extension-vs-project-loader
{
Name = "nunit-extension-vs-project-loader"
Version = "3.9.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'nunit-extension-vs-project-loader':
ensure => '3.9.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 as a trusted package on 19 Oct 2024.
This extension allows NUnit to recognize and load solutions and projects in Visual Studio format. It supports files of type .sln, .csproj, .vbproj, .vjsproj, .vcproj and .fsproj.
VS Project Loader Extension 3.9.0 - September 26, 2021
The major changes in this release are the addition of support for
SDK-style projects written in VB and F# and automatic use of the
SkipNonTestAssemblies option when loading a solution. In addition,
the build and release process has been entirely restructured and a
number of outstanding bugs have been fixed.
Feature
* 57 Add support for SDK-style VB and F# projects
Enhancement
* 62 Automatically skip non-test assemblies when a solution file is loaded
Bugs
* 23 Error when running with an x86 csproj
* 26 Support multi-targeting files
* 34 Unable to choose platform when passing solution file
* 37 Missing 'TargetFramework' property should not cause an Exception
* 38 NUnit3-console.exe unable to find dll when AppendTargetFrameworkToOutputPath is added to project
* 56 Project loader should return multiple platforms for each config
Build
* 35 Add functional tests to build
* 36 Automate the GitHub release process
* 39 Convert project to SDK format
* 40 Upgrade Cake to 1.2.0
* 43 Change default branch from master to main
* 44 Standardize build scripts for extensions
* 48 Reorganize / rename embedded resources for test cases
* 53 Run unit tests with NUnitLite
VS Project Loader Extension 3.8.0 - August 11, 2018
Miscellaneous bug fixes.
Issues Resolved
* 22 Fixes returned path when it contains $(Configuration) segment
* 24 Fixes problem with projects containing duplicated sections
* 27 NUnit console run fails on asp.net core project file
VS Project Loader Extension 3.7.0 - November 18, 2017
Added support for new .csproj file format, and resolved issue with missing
optional project elements.
Issues Resolved
* 11 Invalid Project Format Exception if Project is new project file format
* 14 NullReferenceException when loading project file with missing AssemblyName/OutputType
* 16 vs-project-load does not find tests in csproj that use PackageReference instead of package.config
VS Project Loader Extension 3.6.0 - August 1, 2017
Fixes several packaging errors and adds a new chocolatey package. Runners and engines
installed under chocolatey will see and make use of this package.
Issues Resolved
* 4 Change API reference to released version
* 7 No license file in NuGet package
* 8 Integrate chocolatey package in build script
VS Project Loader Extension 3.5.0 - October 6, 2016
The first independent release of the vs-project-loader extension.
Issues Resolved
* 1 Incorrect path of dlls extracted from solution file
Copyright (c) 2008-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.
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 NUnit Project itself. The binaries are
identical to those in the NUnit.Extension.VSProjectLoader nuget package.
md5: A0853C4801A7B93366FE04948FE5DBB6 | sha1: 3F88760A1AC4EA2BC0DFA9464B4587394FAD4609 | sha256: 9D3A2BF2612F556D12F47C7D2C5C16361AFA33FEB6B53E56D8FAF4B9CEF2B17E | sha512: 4AAB28A117B442D6FDF14ABBD362974F5880E7BC6CE0F8BB728CCD1BB5E3D5E50C7CE5629C7D8F0444F2D3337A2217AA86F1A5AED47355061B321F3865CD74B4
Log in or click on link to see number of positives.
- nunit-extension-vs-project-loader.3.9.0.nupkg (be31d6a59125) - ## / 63
- vs-project-loader.dll (9d3a2bf2612f) - ## / 66
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 |
---|---|---|---|---|
NUnit 3 - Visual Studio Project Loader Extension 3.9.0 | 8617 | Monday, September 27, 2021 | Approved | |
NUnit 3 - Visual Studio Project Loader Extension 3.8.0 | 9365 | Saturday, August 11, 2018 | Approved | |
NUnit 3 - Visual Studio Project Loader Extension 3.7.0 | 585 | Sunday, November 26, 2017 | Approved | |
NUnit 3 - Visual Studio Project Loader Extension 3.6.0 | 708 | Wednesday, August 2, 2017 | Approved | |
NUnit 3 - Visual Studio Project Loader Extension 3.5.0 | 388 | Friday, July 7, 2017 | Approved |
Copyright (c) 2008-2021 Charlie Poole
This package has no dependencies.
Ground Rules:
- This discussion is only about NUnit 3 - Visual Studio Project Loader Extension and the NUnit 3 - Visual Studio Project Loader Extension 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 NUnit 3 - Visual Studio Project Loader Extension, 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.