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,403

Downloads of v 6.0.1:

95

Last Update:

17 Oct 2023

Package Maintainer(s):

Software Author(s):

  • Bastian Schmidt

Tags:

files find search replace text disk usage

Batzendev.Tools

  • 1
  • 2
  • 3

6.0.1 | Updated: 17 Oct 2023

Downloads:

8,403

Downloads of v 6.0.1:

95

Maintainer(s):

Software Author(s):

  • Bastian Schmidt

Batzendev.Tools 6.0.1

  • 1
  • 2
  • 3

Some Checks Are Exempted or Have Failed

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Depends on 4.6.2 which has an exemption on the verifier, so this package requires the same.

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 Batzendev.Tools, run the following command from the command line or from PowerShell:

>

To upgrade Batzendev.Tools, run the following command from the command line or from PowerShell:

>

To uninstall Batzendev.Tools, 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 batzendev.tools -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 batzendev.tools -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 batzendev.tools
  win_chocolatey:
    name: batzendev.tools
    version: '6.0.1'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'batzendev.tools' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.0.1'
end

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


cChocoPackageInstaller batzendev.tools
{
    Name     = "batzendev.tools"
    Version  = "6.0.1"
    Source   = "INTERNAL REPO URL"
}

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


package { 'batzendev.tools':
  ensure   => '6.0.1',
  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 17 Oct 2023.

Description

Just a small suite of tools.
Currently included:

  • Text-Finder: Search and replace text in files
  • File-Finder: Search for files and directories
  • Disk-Usage: Analyze disk usage
  • Copy: Copy directories and files (via CLI, UI or Explorer extension)
  • Delete: Delete directories and files (via CLI, UI or Explorer extension)

If you encounter any issues or have ideas for improvements feel free to provide feedback at https://github.com/batzen/Batzendev.Tools


tools\chocolateyInstall.ps1
$installDir = Get-ChocolateyPath -PathType 'PackagePath'
$installToolsDir = Join-Path $installDir "tools"

@(
'Batzendev.Tools', 'bdevtools_ui'
) | ForEach-Object {
  New-Item "$installToolsDir\$_.exe.gui" -Type file -Force | Out-Null
}

$desktop = [Environment]::GetFolderPath("Desktop")
$shortcutFilePath = Join-Path $desktop "Batzendev.Tools.lnk"

$targetShortcutPath = Join-Path $installToolsDir "Batzendev.Tools.exe"

Install-ChocolateyShortcut -ShortcutFilePath $shortcutFilePath -TargetPath $targetShortcutPath

Start-Process -FilePath (Join-Path $installToolsDir "bdevtools.exe") -Args "shellextension", "install" -Wait
tools\chocolateyUninstall.ps1
$desktop = $([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::DesktopDirectory))
$shortcutFilePath = Join-Path $desktop "Batzendev.Tools.lnk"

if (Test-Path($shortcutFilePath)) {
	Remove-Item $shortcutFilePath
}
tools\LICENSE.txt
From: https://choosealicense.com/licenses/mit/

LICENSE

MIT License

Copyright (c) 2009 - 2022 Bastian Schmidt

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\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 vendor itself. 
There is no need to include checksums in this file as the binaries are 
all contained in this package and not aquired from a third party website.
tools\Batzendev.Tools.exe
md5: 43DFD4FD0832FA122EA68532DBD3F63B | sha1: E51BA17472EE9AA004BD129D511FB8EA5BC23752 | sha256: A73A4AE574EC9E54EFDBA67DB86D79E10F5BE06E97147952852137C922FD4EC8 | sha512: F39E249ED25CB5061D871AB59A49C5B33254C50C7553D3D2268A0C8C774D8B55EBB130CA4B41496C06C0B2D47F6E4FCA91D3E19D2F742C85AF84BC80D8BD262E
tools\bdevtools_ui.exe
md5: F772B5C2E3E5695BC00F562D362AE16A | sha1: B3479F81842FDA5808E65C6F384E0C394430BE3C | sha256: 983EEABC7483E21B1B4D6B181894FEAF20DEDF0A83BD64758CE908B72F350C73 | sha512: 14216B1E011B0AD0369D9E5336ECB6038D9C7BA272C2A72AB84FD8B9441D313E0F62FF4CE9A88849D165730FA3D40761DABF1CCE5AD07092102B390C66994FB5
tools\Batzendev.Tools.WindowsShellExtension.x64.dll
md5: 5D1EAA310B47FD19B554820BAEE1FEDA | sha1: EBA8EA24C8E8ACAFBD46FD708D4A2468BAA43753 | sha256: F3FEC5EDBB675BA77EB3F9695CD5FD40715DC8B3E5167E9976F4D05CC4483F6A | sha512: 6D531CDD4B33431319A25388630AC7C5D7BEAD39D19B70480E584C6CCA1F507B879B67C5C086B2B0529711E17101B0A5A72A51656FA1EFFBF42E05F6BC7467D3
tools\licenses.json
[
  {
    "PackageName": "Avalonia",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Angle.Windows.Natives",
    "PackageVersion": "2.1.0.2023020321",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://www.nuget.org/packages/Avalonia.Angle.Windows.Natives/2.1.0.2023020321/License",
    "LicenseType": "LICENSE.txt"
  },
  {
    "PackageName": "Avalonia.BuildServices",
    "PackageVersion": "0.0.29",
    "PackageUrl": "",
    "Copyright": "",
    "Authors": [
      "Avalonia.BuildServices"
    ],
    "Description": "Package Description",
    "LicenseUrl": "",
    "LicenseType": ""
  },
  {
    "PackageName": "Avalonia.Controls.ColorPicker",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Controls.DataGrid",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Desktop",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Diagnostics",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.FreeDesktop",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Native",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Remote.Protocol",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Skia",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Themes.Fluent",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Themes.Simple",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Win32",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.X11",
    "PackageVersion": "11.0.4",
    "PackageUrl": "https://avaloniaui.net/",
    "Copyright": "Copyright 2013-2023 © The AvaloniaUI Project",
    "Authors": [
      "Avalonia Team"
    ],
    "Description": "Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Xaml.Behaviors",
    "PackageVersion": "11.0.2",
    "PackageUrl": "https://github.com/wieslawsoltes/AvaloniaBehaviors",
    "Copyright": "Copyright © Wiesław Šoltés 2023",
    "Authors": [
      "Wiesław Šoltés"
    ],
    "Description": "Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Xaml.Interactions",
    "PackageVersion": "11.0.2",
    "PackageUrl": "https://github.com/wieslawsoltes/AvaloniaBehaviors",
    "Copyright": "Copyright © Wiesław Šoltés 2023",
    "Authors": [
      "Wiesław Šoltés"
    ],
    "Description": "Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Xaml.Interactions.Custom",
    "PackageVersion": "11.0.2",
    "PackageUrl": "https://github.com/wieslawsoltes/AvaloniaBehaviors",
    "Copyright": "Copyright © Wiesław Šoltés 2023",
    "Authors": [
      "Wiesław Šoltés"
    ],
    "Description": "Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Xaml.Interactions.DragAndDrop",
    "PackageVersion": "11.0.2",
    "PackageUrl": "https://github.com/wieslawsoltes/AvaloniaBehaviors",
    "Copyright": "Copyright © Wiesław Šoltés 2023",
    "Authors": [
      "Wiesław Šoltés"
    ],
    "Description": "Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Xaml.Interactions.Draggable",
    "PackageVersion": "11.0.2",
    "PackageUrl": "https://github.com/wieslawsoltes/AvaloniaBehaviors",
    "Copyright": "Copyright © Wiesław Šoltés 2023",
    "Authors": [
      "Wiesław Šoltés"
    ],
    "Description": "Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Xaml.Interactions.Events",
    "PackageVersion": "11.0.2",
    "PackageUrl": "https://github.com/wieslawsoltes/AvaloniaBehaviors",
    "Copyright": "Copyright © Wiesław Šoltés 2023",
    "Authors": [
      "Wiesław Šoltés"
    ],
    "Description": "Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Xaml.Interactions.Reactive",
    "PackageVersion": "11.0.2",
    "PackageUrl": "https://github.com/wieslawsoltes/AvaloniaBehaviors",
    "Copyright": "Copyright © Wiesław Šoltés 2023",
    "Authors": [
      "Wiesław Šoltés"
    ],
    "Description": "Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Xaml.Interactions.Responsive",
    "PackageVersion": "11.0.2",
    "PackageUrl": "https://github.com/wieslawsoltes/AvaloniaBehaviors",
    "Copyright": "Copyright © Wiesław Šoltés 2023",
    "Authors": [
      "Wiesław Šoltés"
    ],
    "Description": "Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Avalonia.Xaml.Interactivity",
    "PackageVersion": "11.0.2",
    "PackageUrl": "https://github.com/wieslawsoltes/AvaloniaBehaviors",
    "Copyright": "Copyright © Wiesław Šoltés 2023",
    "Authors": [
      "Wiesław Šoltés"
    ],
    "Description": "Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Ben.Demystifier",
    "PackageVersion": "0.4.1",
    "PackageUrl": "https://github.com/benaadams/Ben.Demystifier",
    "Copyright": "",
    "Authors": [
      "Ben Adams"
    ],
    "Description": "High performance understanding for stack traces (Make error logs more productive)",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "ColorTextBlock.Avalonia",
    "PackageVersion": "11.0.1",
    "PackageUrl": "https://github.com/whistyun/Markdown.Avalonia/tree/master/ColorTextBlock.Avalonia/",
    "Copyright": "Copyright (c) 2020 whistyun",
    "Authors": [
      "whistyun"
    ],
    "Description": "Package Description",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "CommonServiceLocator",
    "PackageVersion": "2.0.7",
    "PackageUrl": "https://github.com/unitycontainer/commonservicelocator",
    "Copyright": "Copyright © .NET Foundation and Contributors. All Rights Reserved",
    "Authors": [
      ".NET Foundation and Contributors"
    ],
    "Description": "The library provides an abstraction over IoC containers and service locators. Using the library allows an application to indirectly access the capabilities without relying on hard references.",
    "LicenseUrl": "https://opensource.org/licenses/MS-PL",
    "LicenseType": "MS-PL"
  },
  {
    "PackageName": "ControlzEx",
    "PackageVersion": "6.0.0",
    "PackageUrl": "https://github.com/ControlzEx/ControlzEx",
    "Copyright": "Copyright © 2015 - 2023 Jan Karger, Bastian Schmidt, James Willock",
    "Authors": [
      "Jan Karger",
      " Bastian Schmidt",
      " James Willock"
    ],
    "Description": "ControlzEx is a library with some shared Controls for WPF.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "DialogHost.Avalonia",
    "PackageVersion": "0.7.6",
    "PackageUrl": "https://github.com/AvaloniaUtils/DialogHost.Avalonia/",
    "Copyright": "",
    "Authors": [
      "SKProCH"
    ],
    "Description": "Avalonia Dialog Host control that provides a simple way to display a dialog with information or prompt the user when information is required",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "DryIoc.CommonServiceLocator.dll",
    "PackageVersion": "4.1.0",
    "PackageUrl": "https://github.com/dadhi/DryIoc",
    "Copyright": "Copyright © 2013-2020 Maksim Volkau",
    "Authors": [
      "Maksim Volkau"
    ],
    "Description": "Implementation of CommonServiceLocator for DryIoc container, see rationale at https://github.com/unitycontainer/commonservicelocator",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "DryIoc.dll",
    "PackageVersion": "5.4.1",
    "PackageUrl": "https://github.com/dadhi/DryIoc",
    "Copyright": "Copyright © 2013-2023 Maksim Volkau",
    "Authors": [
      "Maksim Volkau"
    ],
    "Description": "DryIoc is fast, small, full-featured IoC Container for .NET",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "DynamicData",
    "PackageVersion": "7.14.2",
    "PackageUrl": "http://dynamic-data.org/",
    "Copyright": "Copyright (c) Roland Pheasant 2011-2023",
    "Authors": [
      "Roland Pheasant"
    ],
    "Description": "Bring the power of Rx to collections using Dynamic Data.\r\nDynamic Data is a comprehensive caching and data manipulation solution which introduces domain centric observable collections.\r\n      Linq extensions enable dynamic filtering, sorting, grouping, transforms, binding, pagination, data virtualisation, expiration, disposal management plus more.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "FluentValidation",
    "PackageVersion": "11.7.1",
    "PackageUrl": "https://fluentvalidation.net/",
    "Copyright": "Copyright (c) Jeremy Skinner, .NET Foundation, and contributors 2008-2023",
    "Authors": [
      "Jeremy Skinner"
    ],
    "Description": "A validation library for .NET that uses a fluent interface to construct strongly-typed validation rules.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "Fody",
    "PackageVersion": "6.8.0",
    "PackageUrl": "https://github.com/Fody/Fody",
    "Copyright": "",
    "Authors": [
      "Fody"
    ],
    "Description": "Extensible tool for weaving .net assemblies.",
    "LicenseUrl": "https://www.nuget.org/packages/Fody/6.8.0/License",
    "LicenseType": "License.txt"
  },
  {
    "PackageName": "Fody",
    "PackageVersion": "6.6.4",
    "PackageUrl": "https://github.com/Fody/Fody",
    "Copyright": "",
    "Authors": [
      "Fody"
    ],
    "Description": "Extensible tool for weaving .net assemblies.",
    "LicenseUrl": "https://www.nuget.org/packages/Fody/6.6.4/License",
    "LicenseType": "License.txt"
  },
  {
    "PackageName": "GitVersion.MsBuild",
    "PackageVersion": "5.12.0",
    "PackageUrl": "https://github.com/GitTools/GitVersion",
    "Copyright": "Copyright GitTools 2023.",
    "Authors": [
      "GitTools and Contributors"
    ],
    "Description": "Stamps an assembly with git information based on SemVer.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "HarfBuzzSharp",
    "PackageVersion": "2.8.2.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "HarfBuzzSharp is a cross-platform OpenType text shaping engine for .NET platforms.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "HarfBuzzSharp",
    "PackageVersion": "2.8.2.5",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "HarfBuzzSharp is a cross-platform OpenType text shaping engine for .NET platforms.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "HarfBuzzSharp.NativeAssets.Linux",
    "PackageVersion": "2.8.2.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "HarfBuzzSharp is a cross-platform OpenType text shaping engine for .NET platforms.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "HarfBuzzSharp.NativeAssets.macOS",
    "PackageVersion": "2.8.2.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "HarfBuzzSharp is a cross-platform OpenType text shaping engine for .NET platforms.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "HarfBuzzSharp.NativeAssets.macOS",
    "PackageVersion": "2.8.2.5",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "HarfBuzzSharp is a cross-platform OpenType text shaping engine for .NET platforms.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "HarfBuzzSharp.NativeAssets.WebAssembly",
    "PackageVersion": "2.8.2.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "HarfBuzzSharp is a cross-platform OpenType text shaping engine for .NET platforms.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "HarfBuzzSharp.NativeAssets.Win32",
    "PackageVersion": "2.8.2.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "HarfBuzzSharp is a cross-platform OpenType text shaping engine for .NET platforms.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "HarfBuzzSharp.NativeAssets.Win32",
    "PackageVersion": "2.8.2.5",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "HarfBuzzSharp is a cross-platform OpenType text shaping engine for .NET platforms.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "Humanizer.Core",
    "PackageVersion": "2.14.1",
    "PackageUrl": "https://github.com/Humanizr/Humanizer",
    "Copyright": "Copyright (c) .NET Foundation and Contributors",
    "Authors": [
      "Mehdi Khalili",
      " Claire Novotny"
    ],
    "Description": "Humanizer core package that contains the library and the neutral language (English) resources",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "JetBrains.Annotations",
    "PackageVersion": "2023.2.0",
    "PackageUrl": "https://www.jetbrains.com/help/resharper/Code_Analysis__Code_Annotations.html",
    "Copyright": "",
    "Authors": [
      "JetBrains"
    ],
    "Description": "JetBrains.Annotations help reduce false positive warnings, explicitly declare purity and nullability in your code, deal with implicit usages of members, support special semantics of APIs in ASP.NET and XAML frameworks and otherwise increase accuracy of JetBrains Rider and ReSharper code inspections.\r\n\r\nAll usages of JetBrains.Annotations attributes are erased from metadata by default, which means no actual binary reference to 'JetBrains.Annotations.dll' assembly is produced. If you need to preserve these attributes in metadata, just define 'JETBRAINS_ANNOTATIONS' conditional compilation symbol in your projects.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "LiveChartsCore",
    "PackageVersion": "2.0.0-rc1",
    "PackageUrl": "",
    "Copyright": "",
    "Authors": [
      "BetoRodriguez"
    ],
    "Description": "Simple, flexible, interactive and powerful data visualization for .Net, this is the core package probably you need another package also unless you are building your own backed.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "LiveChartsCore.SkiaSharpView",
    "PackageVersion": "2.0.0-rc1",
    "PackageUrl": "",
    "Copyright": "",
    "Authors": [
      "BetoRodriguez"
    ],
    "Description": "Simple, flexible, interactive and powerful data visualization for .Net, this package contains the SkiaSharp backend.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "LiveChartsCore.SkiaSharpView.Avalonia",
    "PackageVersion": "2.0.0-rc1",
    "PackageUrl": "",
    "Copyright": "",
    "Authors": [
      "BetoRodriguez"
    ],
    "Description": "Simple, flexible, interactive and powerful data visualization for AvaloniaUI.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "MahApps.Metro",
    "PackageVersion": "3.0.0-alpha0457",
    "PackageUrl": "https://github.com/MahApps/MahApps.Metro",
    "Copyright": "Copyright © 2023 .NET Foundation and Contributors. All rights reserved.",
    "Authors": [
      "Jan Karger",
      " Bastian Schmidt",
      " Dennis Daume",
      " Brendan Forster",
      " Alex Mitchell",
      " Paul Jenkins",
      " Jake Ginnivan"
    ],
    "Description": "The goal of MahApps.Metro is to allow devs to quickly and easily cobble together a 'Modern' UI for their WPF apps (>= .Net 4.6.2), with minimal effort.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "MahApps.Metro.IconPacks.Material",
    "PackageVersion": "4.11.0",
    "PackageUrl": "https://github.com/MahApps/MahApps.Metro.IconPacks",
    "Copyright": "Copyright © 2016 - 2021 MahApps.Metro",
    "Authors": [
      "Jan Karger"
    ],
    "Description": "IconPacks for stylish awesome WPF and UWP applications.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Markdown.Avalonia.Tight",
    "PackageVersion": "11.0.1",
    "PackageUrl": "https://github.com/whistyun/Markdown.Avalonia",
    "Copyright": "Copyright (c) 2010 Bevan Arps, 2020 whistyun",
    "Authors": [
      "Bevan Arps(original)",
      "whistyun"
    ],
    "Description": "Markdown Controls for Avalonia",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Material.Icons",
    "PackageVersion": "2.0.3",
    "PackageUrl": "https://github.com/SKProCH/Material.Icons/",
    "Copyright": "",
    "Authors": [
      "SKProCH"
    ],
    "Description": "Parsed icons set from materialdesignicons.com",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Material.Icons.Avalonia",
    "PackageVersion": "2.0.1",
    "PackageUrl": "https://github.com/AvaloniaUtils/Material.Icons.Avalonia/",
    "Copyright": "",
    "Authors": [
      "SKProCH"
    ],
    "Description": "Avalonia control for display material icons from Material.Icons",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "MessageBox.Avalonia",
    "PackageVersion": "3.1.4",
    "PackageUrl": "https://github.com/CreateLab/MessageBox.Avalonia",
    "Copyright": "",
    "Authors": [
      "Lary"
    ],
    "Description": "Messagebox for AvaloniaUI",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "MicroCom.Runtime",
    "PackageVersion": "0.11.0",
    "PackageUrl": "",
    "Copyright": "Copyright 2021 © Nikita Tsukanov",
    "Authors": [
      "MicroCom.Runtime"
    ],
    "Description": "IDL-based COM interop codegen. Consumes MIDL-like IDL file, generates efficient cross-platform C# interop and C++ header files.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Newtonsoft.Json",
    "PackageVersion": "13.0.1",
    "PackageUrl": "https://www.newtonsoft.com/json",
    "Copyright": "Copyright © James Newton-King 2008",
    "Authors": [
      "James Newton-King"
    ],
    "Description": "Json.NET is a popular high-performance JSON framework for .NET",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "NuGet.Common",
    "PackageVersion": "6.7.0",
    "PackageUrl": "https://aka.ms/nugetprj",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "Common utilities and interfaces for all NuGet libraries.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "NuGet.Configuration",
    "PackageVersion": "6.7.0",
    "PackageUrl": "https://aka.ms/nugetprj",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "NuGet's configuration settings implementation.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "NuGet.Frameworks",
    "PackageVersion": "6.7.0",
    "PackageUrl": "https://aka.ms/nugetprj",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "NuGet's understanding of target frameworks.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "NuGet.Packaging",
    "PackageVersion": "6.7.0",
    "PackageUrl": "https://aka.ms/nugetprj",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "NuGet's understanding of packages. Reading nuspec, nupkgs and package signing.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "NuGet.Protocol",
    "PackageVersion": "6.7.0",
    "PackageUrl": "https://aka.ms/nugetprj",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "NuGet's implementation for interacting with feeds. Contains functionality for all feed types.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "NuGet.Versioning",
    "PackageVersion": "6.7.0",
    "PackageUrl": "https://aka.ms/nugetprj",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "NuGet's implementation of Semantic Versioning.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "PropertyChanged.Fody",
    "PackageVersion": "4.1.0",
    "PackageUrl": "https://github.com/Fody/PropertyChanged",
    "Copyright": "",
    "Authors": [
      "Simon Cropp"
    ],
    "Description": "Add property notification to all classes that implement INotifyPropertyChanged.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "ReactiveUI",
    "PackageVersion": "19.4.1",
    "PackageUrl": "https://reactiveui.net/",
    "Copyright": "Copyright (c) .NET Foundation and Contributors",
    "Authors": [
      ".NET Foundation and Contributors"
    ],
    "Description": "A MVVM framework that integrates with the Reactive Extensions for .NET to create elegant, testable User Interfaces that run on any mobile or desktop platform. This is the base package with the base platform implementations",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "ReactiveUI.WPF",
    "PackageVersion": "19.4.1",
    "PackageUrl": "https://reactiveui.net/",
    "Copyright": "Copyright (c) .NET Foundation and Contributors",
    "Authors": [
      ".NET Foundation and Contributors"
    ],
    "Description": "Contains the ReactiveUI platform specific extensions for Windows Presentation Foundation (WPF)",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Serilog",
    "PackageVersion": "3.0.1",
    "PackageUrl": "https://serilog.net/",
    "Copyright": "",
    "Authors": [
      "Serilog Contributors"
    ],
    "Description": "Simple .NET logging with fully-structured events",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "Serilog.Sinks.Async",
    "PackageVersion": "1.5.0",
    "PackageUrl": "https://serilog.net/",
    "Copyright": "",
    "Authors": [
      "Jezz Santos",
      "Serilog Contributors"
    ],
    "Description": "Asynchronous sink wrapper for Serilog.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "Serilog.Sinks.File",
    "PackageVersion": "5.0.0",
    "PackageUrl": "https://serilog.net/",
    "Copyright": "",
    "Authors": [
      "Serilog Contributors"
    ],
    "Description": "Write Serilog events to text files in plain or JSON format.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "Serilog.Sinks.Trace",
    "PackageVersion": "3.0.0",
    "PackageUrl": "https://github.com/serilog/serilog-sinks-trace",
    "Copyright": "",
    "Authors": [
      "Serilog Contributors"
    ],
    "Description": "The diagnostic trace sink for Serilog.",
    "LicenseUrl": "https://licenses.nuget.org/Apache-2.0",
    "LicenseType": "Apache-2.0"
  },
  {
    "PackageName": "SkiaSharp",
    "PackageVersion": "2.88.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.\r\nIt provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "SkiaSharp",
    "PackageVersion": "2.88.5",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.\r\nIt provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "SkiaSharp.HarfBuzz",
    "PackageVersion": "2.88.5",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "This package adds text shaping support to SkiaSharp via HarfBuzz.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "SkiaSharp.NativeAssets.Linux",
    "PackageVersion": "2.88.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.\r\nIt provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "SkiaSharp.NativeAssets.macOS",
    "PackageVersion": "2.88.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.\r\nIt provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "SkiaSharp.NativeAssets.macOS",
    "PackageVersion": "2.88.5",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.\r\nIt provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "SkiaSharp.NativeAssets.WebAssembly",
    "PackageVersion": "2.88.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.\r\nIt provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "SkiaSharp.NativeAssets.Win32",
    "PackageVersion": "2.88.3",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.\r\nIt provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "SkiaSharp.NativeAssets.Win32",
    "PackageVersion": "2.88.5",
    "PackageUrl": "https://go.microsoft.com/fwlink/?linkid=868515",
    "Copyright": "© Microsoft Corporation. All rights reserved.",
    "Authors": [
      "Microsoft"
    ],
    "Description": "SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.\r\nIt provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.",
    "LicenseUrl": "https://go.microsoft.com/fwlink/?linkid=868514",
    "LicenseType": ""
  },
  {
    "PackageName": "Spectre.Console",
    "PackageVersion": "0.47.0",
    "PackageUrl": "https://github.com/spectreconsole/spectre.console",
    "Copyright": "Patrik Svensson, Phil Scott, Nils Andresen",
    "Authors": [
      "Patrik Svensson",
      " Phil Scott",
      " Nils Andresen"
    ],
    "Description": "A library that makes it easier to create beautiful console applications.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Spectre.Console.Cli",
    "PackageVersion": "0.47.0",
    "PackageUrl": "https://github.com/spectreconsole/spectre.console",
    "Copyright": "Patrik Svensson, Phil Scott, Nils Andresen",
    "Authors": [
      "Patrik Svensson",
      " Phil Scott",
      " Nils Andresen"
    ],
    "Description": "A library that makes it easier to create beautiful console applications.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Splat",
    "PackageVersion": "14.6.37",
    "PackageUrl": "https://github.com/reactiveui/splat/",
    "Copyright": "Copyright (c) .NET Foundation and Contributors",
    "Authors": [
      ".NET Foundation and Contributors"
    ],
    "Description": "A library to make things cross-platform that should be.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "TextCopy",
    "PackageVersion": "6.2.1",
    "PackageUrl": "https://github.com/CopyText/TextCopy",
    "Copyright": "Copyright 2022. All rights reserved",
    "Authors": [
      "https://github.com/CopyText/TextCopy/graphs/contributors"
    ],
    "Description": "A cross platform package to copy text to the clipboard.",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  },
  {
    "PackageName": "Tmds.DBus.Protocol",
    "PackageVersion": "0.15.0",
    "PackageUrl": "",
    "Copyright": "Tom Deseyn",
    "Authors": [
      "Tom Deseyn"
    ],
    "Description": "Tmds.DBus.Protocol Library",
    "LicenseUrl": "https://licenses.nuget.org/MIT",
    "LicenseType": "MIT"
  }
]
tools\bdevtools.exe
md5: C107132EC0D5814429917C1BA1BBB1ED | sha1: C4A058A758095511ED3ED762E32DC1A3F9195AAF | sha256: A7EBD8BD999EA07A16732F576CD9D89FF6A29BC20644F1949B9F9886030567E6 | sha512: 6BD798F6F146F9C8AF990690E0DDF7FDC5263DEC951651BBFEB1D8959E1C3403461ABB578918CE980F853C0419642932B5A128D73C6D420334F10D2AD8673788

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
Batzendev.Tools 6.0.0 48 Sunday, October 15, 2023 Approved
Batzendev.Tools 5.2.2 229 Friday, January 20, 2023 Approved
Batzendev.Tools 5.2.1 41 Saturday, January 14, 2023 Approved
Batzendev.Tools 5.2.0 38 Thursday, January 12, 2023 Approved
Batzendev.Tools 5.1.0 55 Saturday, January 7, 2023 Approved
Batzendev.Tools 5.0.1 50 Wednesday, December 14, 2022 Approved
Batzendev.Tools 5.0.0 62 Wednesday, November 30, 2022 Approved
Batzendev.Tools 4.1.1 149 Saturday, February 19, 2022 Approved
Batzendev.Tools 4.1.0 70 Sunday, February 13, 2022 Approved
Batzendev.Tools 4.0.0 277 Saturday, October 24, 2020 Approved
Batzendev.Tools 4.0.0-rc0185 227 Wednesday, July 8, 2020 Approved
Batzendev.Tools 4.0.0-rc0184 152 Wednesday, June 17, 2020 Approved
Batzendev.Tools 4.0.0-rc0181 134 Tuesday, June 16, 2020 Approved
Batzendev.Tools 4.0.0-rc0159 187 Sunday, May 17, 2020 Approved
Batzendev.Tools 3.0.3 513 Tuesday, January 8, 2019 Approved
Batzendev.Tools 3.0.2 274 Monday, January 7, 2019 Approved
Batzendev.Tools 3.0.1 267 Saturday, December 15, 2018 Approved
Batzendev.Tools 3.0.0 235 Saturday, December 15, 2018 Approved
Batzendev.Tools 2.4.0 404 Sunday, February 25, 2018 Approved
Batzendev.Tools 2.3.1 362 Sunday, February 18, 2018 Approved
Batzendev.Tools 2.3.0 349 Monday, February 12, 2018 Approved
Batzendev.Tools 2.2.0.0 562 Tuesday, January 17, 2017 Approved
Batzendev.Tools 2.1.0.0 489 Sunday, December 11, 2016 Approved
Batzendev.Tools 2.0.1.0 482 Tuesday, November 8, 2016 Approved
Batzendev.Tools 2.0.0.0 500 Sunday, November 6, 2016 Approved
Batzendev.Tools 1.0.1.1 860 Sunday, March 23, 2014 Approved
Batzendev.Tools 1.0.1.0 509 Friday, March 14, 2014 Approved
Batzendev.Tools 1.0.0.0 468 Friday, March 14, 2014 Approved

v6.0.1:

  • Fixed plugin overview

v6.0.0:

  • Changed from self-contained to single-file application
    That means you now have to install .NET 7 to run this application
  • Fixed a memory leak in disk usage
  • Improved overall memory usage and performance
  • Added refresh for items in disk usage view
  • Added "bdevtools.exe", a commandline version which includes:
    • Searching for files
    • Disk usage
    • Copying directories and files
    • Deleting directories and files
  • Shell extension for copy and delete (console and UI)
  • Added "bdevtools_ui.exe" as a UI app for copy and delete

v5.2.2:

  • Fixed a crash when cancelling operations

v5.2.1:

  • Fixed a crash when cancelling operations

v5.2.0:

  • Text search now starts immediately instead of waiting for all files to be found
  • Improved performance for all operations that look for files
  • Fixed tree map when display scaling is not at 100%

v5.1.0:

  • Added extensions view to disk usage
  • Added tree map to disk usage
  • Increased performance of disk usage
  • Fixed critical file span reader bug

v5.0.1:

  • Massively increased performance of disk usage
  • Fixed crashes in disk usage

v5.0.0:

  • Increased performance
  • Added disk usage
  • Shell context menu now works for items from different directories
  • Fixed cancel in file finder

v4.1.1:

  • Fixed theme loading

v4.1.0:

v4.0.0:

  • Fixed an issue that caused the current tab to be closed instead of the one the close button was clicked on
  • Fixed a crash that occured when grouping results
  • Sort order of results is preserved during tab changes
  • Added copy options to the context menu of search results
  • Increased performance
  • Replaced HockeyApp with AppCenter
  • Switched to .NET core and made app self contained (that's why the download size is now larger)

Discussion for the Batzendev.Tools Package

Ground Rules:

  • This discussion is only about Batzendev.Tools and the Batzendev.Tools 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 Batzendev.Tools, 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