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:

5,073

Downloads of v 1.1:

597

Last Update:

27 May 2019

Package Maintainer(s):

Software Author(s):

  • Andreas Wäscher

Tags:

fusion assembly fuslogvw binding foss utilities productivity

Fusion++

This is not the latest version of Fusion++ available.

  • 1
  • 2
  • 3

1.1 | Updated: 27 May 2019

Downloads:

5,073

Downloads of v 1.1:

597

Maintainer(s):

Software Author(s):

  • Andreas Wäscher

Fusion++ 1.1

This is not the latest version of Fusion++ available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Fusion++, run the following command from the command line or from PowerShell:

>

To upgrade Fusion++, run the following command from the command line or from PowerShell:

>

To uninstall Fusion++, 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 fusionplusplus -y --source="'INTERNAL REPO URL'" --version="'1.1'" [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 fusionplusplus -y --source="'INTERNAL REPO URL'" --version="'1.1'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install fusionplusplus
  win_chocolatey:
    name: fusionplusplus
    version: '1.1'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'fusionplusplus' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.1'
end

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


cChocoPackageInstaller fusionplusplus
{
    Name     = "fusionplusplus"
    Version  = "1.1"
    Source   = "INTERNAL REPO URL"
}

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


package { 'fusionplusplus':
  ensure   => '1.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 01 Feb 2020.

Description

Fusion++ is for anyone feeling uncomfortable using the default Assembly Binding Log Viewer from the Windows SDK: FUSLOGVW.exe.
Did you know what "Enable immersive logging" means? Or why you should separate log categories from "Default" and "Native Images"? Did you ever forget to disable the log again and wondered why every .NET application is that slow and your disk runs out of space?
That's where Fusion++ comes in: Just hit "Record" to capture your assembly logs. If you are done, click "Stop" again and investigate binding errors in a beautiful UI. Fusion++ takes care of anything else in the background.


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 Fusion++ author Andreas Wäscher himself. The binaries are 
identical to other package types published on GitHub.
tools\LICENSE.txt
From: https://github.com/awaescher/Fusion/blob/master/LICENSE

LICENSE

MIT License

Copyright (c) 2019 Andreas Wäscher

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\DevExpress.XtraBars.v19.1.dll
md5: 7AB4702C48776228CA15F2F28763A8C8 | sha1: 71BCD26710F72E825B7E4097903FF01E301DD036 | sha256: 26B96E35234DB882FA040414658E67961BCACAEE7BDE8E3ECE25316510EF6212 | sha512: 14F9A415F8C44A28F2A617E22943A4231BEC069EACCF58118119B83AEBAEC6D579CD00F26A9121A496B0B7EC66453336A87F8C2C8EF74BD777E6CCF213BBE046
tools\DevExpress.Utils.v19.1.dll
md5: ECD64A5661AE09D84E5C268B3661EDE1 | sha1: 96D2039095FF8901863222BFD5383D08D0787B30 | sha256: 94A12323C93F17C94A70B0C14BCC842482ABB9B450428F34A7D6CE21BB00B360 | sha512: C95A99E18F58FBF6012FBA794E3FD75ECABE8EDCC834D4DDD023D0F85BE8D1D70F219E08575B1B7B96A8C9C6F814D29DABA7F1C178A88EC3F5317290A6EB4006
tools\DevExpress.Sparkline.v19.1.Core.dll
md5: 728025F1F029390BEA5D7DB8031E1ECC | sha1: BD8115D9C535457EC153FDC4623A1A252FE2FFA1 | sha256: 5260833D17F66AA6ACFB0A3EB37975DB1CC7521CD9BA1EF46D2A0CCCE04BE6D8 | sha512: 835E9C3CEAE27E902FF6A96BF6B8E5DCEA02A9F6D87B792B3FFE6CA998E0A05E43498136DD44CF8E5AF1F7CFC7BF4BBA969328B5EB96AB7FF0788895A577A2E2
tools\DevExpress.RichEdit.v19.1.Export.dll
md5: C851FEA9709D5D8594E932A2EF43CA5A | sha1: C64587DB13704964AD00B1D944A31AE1ED9A2A9D | sha256: 9F668193F97B9D23DC4F5C250C6F3CB8C94EC27F7E0583848D59214789288637 | sha512: C0D7135856AD5824C04D493DD24BF354BA3A0D1AF73510C80D6391397C6534B3674EFA6586B44E958ADF2A142E2B621DB8EB6D138F991A7C06E033646AD06B76
tools\DevExpress.RichEdit.v19.1.Core.dll
md5: 4C6E49EE711D899D97821FF4327472A5 | sha1: 4031853176FF4533927D76785F76E5A5CC3E10AE | sha256: 3664AC27ED90AD74CEC796FF86B4DF5B03BF0EFBF38D747483EC2BF804860DE0 | sha512: 4B7A1AFD3EF35E693F401D4EB2190C07C97A337B68A0FD87D460289EF2A6C8CD315FA590543B64F29FDC3A73B54F36A0030D71AE88FCC960724C84F3AB52C98D
tools\DevExpress.Printing.v19.1.Core.dll
md5: 00CFB23EFA26FB54D2FF3583D612580F | sha1: C6BF67A0D67196EA4889DA75A5506E5DF7CBFA77 | sha256: 2789BFADB7ED914DD96CEE0FCCF111FE8D85DD5C16F990F2F88869E984753B4A | sha512: B14B8E04347D3002CB699132381F48F54762B3B6D6C371843FFFF18F27157F12D4AFA355304E4159B6535D4FFBE3157CDC67134763139E8AF780E01E86507695
tools\DevExpress.PivotGrid.v19.1.Core.dll
md5: 99FECFA13ECA54440CF629C558053B23 | sha1: 2E2C1372F42BDEC170110936C9CE4F3E0B98CB36 | sha256: D9604289655DD18DB5639EDB0F5CA55F2B3F80D2A2B267314CB5FDAD1EE40BBF | sha512: F1757A013AB3EF5058081514B68F67E093EE56E0D3546928B068774BA10B745916F0DD3FB7A6524A3D7F5925F1A8FFFDFF4118E86256C8E6CF50DE67B706BEC1
tools\DevExpress.Pdf.v19.1.Core.dll
md5: 14AFCBA56A90D39A9C3891DADB536EB7 | sha1: BB2565E91A62F1CB1B2F313D6292679595C3164D | sha256: 611709CBEE137F9B7E29F84568B8EFDD640E22DB6CBB0738C4E6D9BEAE9B613D | sha512: B28EE5718CC58CF8E613F87881006A32BA73570CA82FF6BB6943E789582A6F9FC0FFFADC03787CFA90FFF8BB834EF18AC2C14B987E60107790CF55B0D5586E6B
tools\DevExpress.Office.v19.1.Core.dll
md5: 454E795E3E718CBFBFF5CA43E3B61C72 | sha1: A0CD7D9CC35F2AC52DB5899B4894CA111F75EE68 | sha256: DC9A2F6243206554D5336B63C824DF31A8777EE0AFEECB04C00F570445CB3594 | sha512: FC205EC79A8B17C39453814061ECEABCE1E3A99A07EB1609B49F3FD41110203D6A3EB124580F0EF7AAE9D5ABF118260A1B26AD01AE0F78375A6BF8DD9A74B70F
tools\DevExpress.Images.v19.1.dll
md5: 459D0A68E2ACAEE8FF8CC7FB5195917D | sha1: 1765876DDDE9DE5A434B2A0677ED02CBDC795309 | sha256: 0B320C4D60AEDCAC54F70987D5EDA4FA28CAD50D4BA14E0E950970C510A021B7 | sha512: C78CDA4F49F4052AD3F85B000268C522A38E344818DA57EE9AA6BDCB3E4FC3E39B667F0C2F4514D1AE93D58995CAB3C05B32ED5EBDE4A7DD97B8F3E031AF89EE
tools\DevExpress.Data.v19.1.dll
md5: CCE0A68FD419150EDDF05E56E3BBFC97 | sha1: ED69F9AE516AE830EC1B430BD2D2FF49BBE1B352 | sha256: 699F6F9053BE86BD0C7F43CDE0151C1531D2990508B931A4DC75004277885E6F | sha512: 79BF6CF5EDB4518896C43B415538572A13F245F6780B068AB8744880AA5CAC7CD3ED6B7A562559B09658D52EA3F895BAC94083E03975A1198BBA83F4C0F8C2F2
tools\Fusion++.exe
md5: B1269BD4FCF59F4BE60979B97D6DE75F | sha1: 238223904F90773626D39015057C29AD7DDCB3D3 | sha256: FE8B4E8B83680501D467EC0957A9395FD628B121C845EADFABD14023EF62F73F | sha512: 0B04F7341F72E7D37EBEA474AEB716D27C81A6C9CD0B86AD1A1477886FF5DDE44D9DC49A9541A8465262125E9C5407B280D19CB91D8BCDC7F8DAD5B66C3DD0D8
tools\DevExpress.XtraWizard.v19.1.dll
md5: 60A8E2DD38A25F8D1680A1602C84D8A1 | sha1: 919647DE4A7DA0ADE794812349C7635D9F1BB8A1 | sha256: 29A085DB276D9CF0FD4E77591C8F84A584FF3998D8D38A85F78708C89D224870 | sha512: B8AEE9646BC4904E6423E55A530EBC08A736F8D6C455FBF8AB6678B1D30CFFFD0F5AF3CBB83D512CBE7BC7EAF416A3E4A1661CFE685B24E18B603EF78E1B3B6A
tools\DevExpress.XtraVerticalGrid.v19.1.dll
md5: 2C0DC9BA5D78308EEE01FEFBD45A13A7 | sha1: 94C16C840F5679C27C5655A6C740A328A8AA23F5 | sha256: A56DDCC9D2DFCB38C86C8427A1FD4AFA769CA148CC801ACEF746E835461B7C57 | sha512: A59665431A4017BF9BBEEDCBCA4F564E3056C308E3E32A36734D4079A75B3E1C6D04E4C577A6C237E9DF73C4507B01546D2123C702B3B1BADE75C45EA7430216
tools\DevExpress.XtraTreeList.v19.1.dll
md5: 5BA76F8796CCEA7C346735C97C13E8B9 | sha1: 9B92DFCE4C2DB2058FC8A048B9B92301046BB934 | sha256: 306D4473268C6E03CBD4FFE358DD9145460F441D3E6B2F980E100029E16F4F07 | sha512: B5A7A95A15482FEE25914C7B4669922E39252FA5E3BED257BA41F8C3DC833BA456B67B7C69914C8DF8828AEA489AD645D648EA411A2FB9BE934427A322A33540
tools\DevExpress.XtraRichEdit.v19.1.dll
md5: EF53EF8787983C08A6DCF9B053EBCF44 | sha1: 55F3B0D44299415D518CBC77B8CF065C02247F12 | sha256: 9BFE9064271833D3A7B62A1403762BD5C13AE858723703DE0E2F2C2910F5C349 | sha512: 355B48CE2BF83290AC2529A7168A1A6FE40D3DC530555ADC9B54737E30E86C78D73D75B1028B56435000F1F3EB31981DD60DA58D9A8C03A7BD3868144888C2A4
tools\DevExpress.XtraPrinting.v19.1.dll
md5: 9C38121C5218FEF3A2DCEB72EAAA58C4 | sha1: F6064B01AB3C331942444E4428BA8A1E6B332A01 | sha256: 6EA7ABC134395D2C1DE927818D86A275B62270F02D1F374AEADFE98329E8E8BA | sha512: 2BEF172A470417E83CCD766C84D566CEC89D78594F21AFEAB924220A7745707F1D84C113A438B1BCB5FD7CB6FAD498494C5289480AA2228A8442AE4A14C7EF98
tools\DevExpress.XtraPivotGrid.v19.1.dll
md5: 2554615B7C759940882F895F16A301D7 | sha1: AAA2D4721C31660E3A7A6EB8A70280E14CF317DE | sha256: 4D3DB1F29E182170B413D0CB717FDCCD210C233A3CC79BB028177573C61CC7E4 | sha512: 218B4D514CEB9C94A471B5E4D9E11EDFEA2EEF0D010D1580EADA93C28829E2C512AFFF151589BAB678A2BFE27225986C231E33DA9F1990041BFBFA801590AC18
tools\DevExpress.XtraNavBar.v19.1.dll
md5: 6B0E919266BB0BDB36734CDD17547B2D | sha1: 5143CE49F138B46A6F48B4A4691005162C31B898 | sha256: 97E2B969E06D03A049CA0486E901DA2854C6E7A5FD49955032D6767018028E4F | sha512: A38EF8A83146FD5E20D4569A0E744C2C53FE8EF21ADBA431DFE0FC0216A5D931BB8B91C172ABBFA69A456FE3CC5AE31580D18DB4796D20C514E7CDFAE2F5E3EB
tools\DevExpress.XtraLayout.v19.1.dll
md5: 639DF81E258D95E8FDE0FD1F943FBE26 | sha1: F738CE85164B3795856AE14FE23775C069C8A26C | sha256: D20EC7678AC3CC53AAF69AA736F0A0BF49B2328E80928B1EF0A332FC9352DAB1 | sha512: 89D9BF6278A96DE1C9B3C060E8CBAF1362138667D8C0327DAC067C327B7901FC6FAC40BECB301B8CF1277EF153353223FB5C62DB9898C256DF3E34DDB8FC1463
tools\DevExpress.XtraGrid.v19.1.dll
md5: A897E15E1D210F66FB437C3E3515F749 | sha1: F3627841C7C127156FEF68DA79531AA80E4D24EE | sha256: 1B477FA451BBFEA2A0BA949043FF26A5C111F42F905801F6E3B1C2EE73CE95FC | sha512: 82A6E30BC5AD1F003BE20F923A303D819CA7F248BFD7999EAC6D432E8260D736A5D8B11A235011928EF590D398A42742EFF145DD5274AA503C44E6ADEF4F2BD0
tools\DevExpress.XtraEditors.v19.1.dll
md5: F8EAF815190D13F1364EE748BAB0A7BE | sha1: 7EC3CBF1E9A54C4CDF22FC48097C9AC1E990FBCF | sha256: DE6587D9F59FD020B4CC3E83F343CAD451C3F50BEBE6E64432DC33A4FE74939D | sha512: BF830A892E539E42EA04B1041C83879BBE70030030EA09EFF30256B4E6FDE102810B51EACEC68F9D9C58098C79B72A3F161EBA6FB2291FC8EB711873AA7CEBAA

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
Fusion++ 1.4 1375 Thursday, April 15, 2021 Approved
Fusion++ 1.3 850 Saturday, June 6, 2020 Approved
Fusion++ 1.2 454 Monday, March 16, 2020 Approved
Fusion++ 1.1 597 Monday, May 27, 2019 Approved
Fusion++ 1.0 207 Friday, May 17, 2019 Approved

This package has no dependencies.

Discussion for the Fusion++ Package

Ground Rules:

  • This discussion is only about Fusion++ and the Fusion++ 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 Fusion++, 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