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

Downloads of v 1.4:

1,375

Last Update:

15 Apr 2021

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.4 | Updated: 15 Apr 2021

Downloads:

5,062

Downloads of v 1.4:

1,375

Maintainer(s):

Software Author(s):

  • Andreas Wäscher

Fusion++ 1.4

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

  • 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:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

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.4'" [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.4'" 
$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.4'
    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.4'
end

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


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

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


package { 'fusionplusplus':
  ensure   => '1.4',
  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 15 Apr 2021.

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\Fusion++.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net5.0",
    "framework": {
      "name": "Microsoft.WindowsDesktop.App",
      "version": "5.0.0"
    }
  }
}
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\System.Net.Http.WinHttpHandler.dll
md5: 9A2E4371736837866BB821AECC86D862 | sha1: BBE4735FDA0338BDA0BDF847B82D14E915F1A69E | sha256: 12761590AF8C06D7DD50D745519E7646C00262B01EBBFE6F52F5E30CA6B040B9 | sha512: 0F235296AC37D1FEBE24DEB16D2D135C93DD8169827DFC48D08EFFA53C70C25BF9796EE3500BAADDB5E2F7106F997FFAB1432EAEFA6C4E1BB77033A4A65DE542
tools\System.ServiceModel.Http.dll
md5: 1A4E8CDEFA869635895C92FE29286572 | sha1: 4BA601705CFAE801E2A3E0A5937BAEF46A61A1B5 | sha256: 958FB9314C6C7DA5A3170CCAF6E239749FBFBDE77BAE2112E7B92700C28E4251 | sha512: 04756C08BE75C8120F3DE179D313D03A29905D4EEFC2F422AF334E969467C6EC1D6C4964728873C1736AB523D8C2D4761DC1FC88644ED4117DD257FC1AC766DF
tools\System.ServiceModel.Primitives.dll
md5: E793AA1A46795D8AD1E5E6F710562231 | sha1: 38C168CC6BB0696C341A2238B96454F7282C8DB4 | sha256: 77906A46F55DD7FAC66F5EF6DCD75BD2AEE8C3549EA12A7E0C623398B5AB5C4A | sha512: 4746735570E7DF3707F248D4A97EF914BAF93C8E62B48D044D3E115D5737A7665F7F85A4458EF04D281623183E67B4BCDE4858EF6D8E227A9D22B0822488DCA3
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\Fusion++.exe
md5: 2BEFA701FECF78E4FCFCA03A0AF03F69 | sha1: 320C9B9F3E22C1E9E0F3775D7632195C42BAE4AA | sha256: E0B9D0CBFF90B100BC3E8A732D8B5D7A8C592567AD80920FD3C0DBF65D2D4FF7 | sha512: EC8E609E03670AC9A20CB5C836A73E9A7B9B76D96E9327241F8460EF8E27F74E96597A0BEFF8A6F6A923A71D426FB71B45A8EBF61C05E43FCEC93058A5D01FD7
tools\Fusion++.Engine.dll
md5: 87C96CE07C3EF2D1BD8CBC23BF6929D3 | sha1: 14DD58494C225A2240E613DB8B5DC9F63E1982FA | sha256: BC62F94996A5BECCBA94DFB41D0614B0E6BA8C085BC1E0424D886D5572122B0C | sha512: D877574F673FA514C0581606941DA0C5782F5812E9905D772BA47264A0CBF205A53EA78F347A86AB3AC948F863E0D1D6128BB9B7AB03DEEA7757256E81D7FAA2
tools\Fusion++.dll
md5: A0DA22BB56A743182037650EDC6B7741 | sha1: EC555D1A4D3276E2E7DF3F9172B9F75D032AA088 | sha256: 617EAB5193BD55124D3B28BAD04DF4BF362E11379BAD50F4FFBC5F4BBF33FD80 | sha512: 592767A40414CF2D7792CE08E98D070A5DC66E21064B012D9F04D29D290692740AC21102BEBB532C5DF76A6A658757986934CA7B323F6CA480C4E8FEFDD46E2D
tools\Fusion++.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v5.0/win-x64",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v5.0": {},
    ".NETCoreApp,Version=v5.0/win-x64": {
      "Fusion++/1.4.0.0": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Win.Bars": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Grid": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.RichEdit": "20.2.5-ctp",
          "Fusion++.Engine": "1.0.0"
        },
        "runtime": {
          "Fusion++.dll": {}
        }
      },
      "DevExpress.WindowsDesktop.Data/20.2.5": {
        "dependencies": {
          "Microsoft.Win32.Registry": "4.6.0",
          "NETStandard.Library": "2.0.3",
          "System.ComponentModel.Annotations": "4.4.0",
          "System.Configuration.ConfigurationManager": "4.5.0",
          "System.Diagnostics.PerformanceCounter": "4.5.0",
          "System.Drawing.Common": "4.5.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Text.Encoding.CodePages": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/DevExpress.Data.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.DataDesktop/20.2.5": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5"
        },
        "runtime": {
          "lib/netcoreapp3.0/DevExpress.Data.Desktop.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Images/20.2.5": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "NETStandard.Library": "2.0.3",
          "System.Drawing.Common": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/DevExpress.Images.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Office.Core/20.2.5": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.Pdf.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Printing.Core": "20.2.5",
          "NETStandard.Library": "2.0.3",
          "System.Drawing.Common": "4.5.0",
          "System.Security.Cryptography.Xml": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/DevExpress.Office.v20.2.Core.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Pdf.Core/20.2.5": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "NETStandard.Library": "2.0.3",
          "System.Drawing.Common": "4.5.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Security.Cryptography.Pkcs": "4.5.2"
        },
        "runtime": {
          "lib/netstandard2.0/DevExpress.Pdf.v20.2.Core.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Pdf.Drawing/20.2.5": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.Pdf.Core": "20.2.5",
          "NETStandard.Library": "2.0.3",
          "System.Drawing.Common": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/DevExpress.Pdf.v20.2.Drawing.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Printing.Core/20.2.5": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.Pdf.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Pdf.Drawing": "20.2.5",
          "NETStandard.Library": "2.0.3",
          "System.ComponentModel.Annotations": "4.4.0",
          "System.Drawing.Common": "4.5.0",
          "System.Security.Cryptography.Pkcs": "4.5.2",
          "System.ServiceModel.Http": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/DevExpress.Printing.v20.2.Core.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.RichEdit.Core/20.2.5": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.Office.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Pdf.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Printing.Core": "20.2.5",
          "NETStandard.Library": "2.0.3",
          "System.Drawing.Common": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/DevExpress.RichEdit.v20.2.Core.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Sparkline.Core/20.2.5": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "NETStandard.Library": "2.0.3",
          "System.Drawing.Common": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/DevExpress.Sparkline.v20.2.Core.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Win.Bars/20.2.5-ctp": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.DataDesktop": "20.2.5",
          "DevExpress.WindowsDesktop.Win.Editors": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Utils": "20.2.5-ctp"
        },
        "runtime": {
          "lib/netcoreapp3.0/DevExpress.XtraBars.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Win.Editors/20.2.5-ctp": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.DataDesktop": "20.2.5",
          "DevExpress.WindowsDesktop.Printing.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Sparkline.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Win.Utils": "20.2.5-ctp"
        },
        "runtime": {
          "lib/netcoreapp3.0/DevExpress.XtraEditors.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Win.Grid/20.2.5-ctp": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.DataDesktop": "20.2.5",
          "DevExpress.WindowsDesktop.Printing.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Win.Editors": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Layout": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Printing": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Utils": "20.2.5-ctp"
        },
        "runtime": {
          "lib/netcoreapp3.0/DevExpress.XtraGrid.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Win.Layout/20.2.5-ctp": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.DataDesktop": "20.2.5",
          "DevExpress.WindowsDesktop.Printing.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Win.Editors": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Utils": "20.2.5-ctp"
        },
        "runtime": {
          "lib/netcoreapp3.0/DevExpress.XtraLayout.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Win.Printing/20.2.5-ctp": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.DataDesktop": "20.2.5",
          "DevExpress.WindowsDesktop.Printing.Core": "20.2.5",
          "DevExpress.WindowsDesktop.RichEdit.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Win.Bars": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Editors": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Layout": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.TreeList": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Utils": "20.2.5-ctp"
        },
        "runtime": {
          "lib/netcoreapp3.0/DevExpress.XtraPrinting.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Win.RichEdit/20.2.5-ctp": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.DataDesktop": "20.2.5",
          "DevExpress.WindowsDesktop.Images": "20.2.5",
          "DevExpress.WindowsDesktop.Office.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Pdf.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Printing.Core": "20.2.5",
          "DevExpress.WindowsDesktop.RichEdit.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Win.Bars": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Editors": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Grid": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Layout": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Printing": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Utils": "20.2.5-ctp"
        },
        "runtime": {
          "lib/netcoreapp3.0/DevExpress.XtraRichEdit.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Win.TreeList/20.2.5-ctp": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.DataDesktop": "20.2.5",
          "DevExpress.WindowsDesktop.Printing.Core": "20.2.5",
          "DevExpress.WindowsDesktop.Win.Editors": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Layout": "20.2.5-ctp",
          "DevExpress.WindowsDesktop.Win.Utils": "20.2.5-ctp"
        },
        "runtime": {
          "lib/netcoreapp3.0/DevExpress.XtraTreeList.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "DevExpress.WindowsDesktop.Win.Utils/20.2.5-ctp": {
        "dependencies": {
          "DevExpress.WindowsDesktop.Data": "20.2.5",
          "DevExpress.WindowsDesktop.DataDesktop": "20.2.5",
          "DevExpress.WindowsDesktop.Printing.Core": "20.2.5"
        },
        "runtime": {
          "lib/netcoreapp3.0/DevExpress.Utils.v20.2.dll": {
            "assemblyVersion": "20.2.5.0",
            "fileVersion": "20.2.5.0"
          }
        }
      },
      "Microsoft.NETCore.Platforms/3.1.0": {},
      "Microsoft.NETCore.Targets/1.1.0": {},
      "Microsoft.Win32.Registry/4.6.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "Microsoft.Win32.SystemEvents/4.5.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0"
        }
      },
      "NETStandard.Library/2.0.3": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0"
        }
      },
      "runtime.any.System.IO/4.3.0": {},
      "runtime.any.System.Reflection/4.3.0": {},
      "runtime.any.System.Reflection.Primitives/4.3.0": {},
      "runtime.any.System.Runtime/4.3.0": {
        "dependencies": {
          "System.Private.Uri": "4.3.0"
        }
      },
      "runtime.any.System.Text.Encoding/4.3.0": {},
      "runtime.any.System.Threading.Tasks/4.3.0": {},
      "System.ComponentModel.Annotations/4.4.0": {},
      "System.Configuration.ConfigurationManager/4.5.0": {
        "dependencies": {
          "System.Security.Cryptography.ProtectedData": "4.5.0",
          "System.Security.Permissions": "4.5.0"
        }
      },
      "System.Diagnostics.PerformanceCounter/4.5.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.Win32.Registry": "4.6.0",
          "System.Configuration.ConfigurationManager": "4.5.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Drawing.Common/4.5.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.Win32.SystemEvents": "4.5.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.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",
          "runtime.any.System.IO": "4.3.0"
        }
      },
      "System.IO.FileSystem.AccessControl/4.7.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Net.Http.WinHttpHandler/4.4.0": {
        "runtime": {
          "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.25519.3"
          }
        }
      },
      "System.Private.ServiceModel/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Net.Http.WinHttpHandler": "4.4.0",
          "System.Reflection.DispatchProxy": "4.4.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Private.Uri/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection": "4.3.0"
        }
      },
      "System.Reflection.DispatchProxy/4.4.0": {},
      "System.Reflection.Emit/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.ILGeneration/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.Lightweight/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection.Primitives": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "runtime.any.System.Runtime": "4.3.0"
        }
      },
      "System.Security.AccessControl/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Security.Cryptography.Cng/4.5.0": {},
      "System.Security.Cryptography.Pkcs/4.5.2": {
        "dependencies": {
          "System.Security.Cryptography.Cng": "4.5.0"
        }
      },
      "System.Security.Cryptography.ProtectedData/4.5.0": {},
      "System.Security.Cryptography.Xml/4.5.0": {
        "dependencies": {
          "System.Security.Cryptography.Pkcs": "4.5.2",
          "System.Security.Permissions": "4.5.0"
        }
      },
      "System.Security.Permissions/4.5.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.7.0"
        }
      },
      "System.Security.Principal.Windows/4.7.0": {},
      "System.ServiceModel.Http/4.4.0": {
        "dependencies": {
          "System.Private.ServiceModel": "4.4.0",
          "System.ServiceModel.Primitives": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.ServiceModel.Http.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.6.25525.6"
          }
        }
      },
      "System.ServiceModel.Primitives/4.4.0": {
        "dependencies": {
          "System.Private.ServiceModel": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.25525.6"
          }
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Text.Encoding": "4.3.0"
        }
      },
      "System.Text.Encoding.CodePages/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Threading.Tasks": "4.3.0"
        }
      },
      "Fusion++.Engine/1.0.0": {
        "dependencies": {
          "Microsoft.Win32.Registry": "4.6.0",
          "System.IO.FileSystem.AccessControl": "4.7.0"
        },
        "runtime": {
          "Fusion++.Engine.dll": {}
        }
      }
    }
  },
  "libraries": {
    "Fusion++/1.4.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "DevExpress.WindowsDesktop.Data/20.2.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-V9U4MY8a65hZVIJhlIBta2aJNfb1ZnPBTrJCkPT2HGe95VL+aLSV3Qi+tKGsy1uijcLIWWCBUjQYdFbVEpCgsw==",
      "path": "devexpress.windowsdesktop.data/20.2.5",
      "hashPath": "devexpress.windowsdesktop.data.20.2.5.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.DataDesktop/20.2.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-wyKSx3QlcX8IFIKgNFE8V+8wo47WPkx7RI9rP5E2C9/iXZPGzfVOVuGeHE40CGhvSMBzMJt60lcm+cCLZv5njQ==",
      "path": "devexpress.windowsdesktop.datadesktop/20.2.5",
      "hashPath": "devexpress.windowsdesktop.datadesktop.20.2.5.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Images/20.2.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lkKL7E8x+ZTzOve2rUMoOX4gXbenyD/hVjqzLwMQGq2FwlRoj0taLxbKmp016U843FbYYr3sQGYZeHxG7G06Rw==",
      "path": "devexpress.windowsdesktop.images/20.2.5",
      "hashPath": "devexpress.windowsdesktop.images.20.2.5.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Office.Core/20.2.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pZxr6xS/KZplVki7iT/v78Si05oT1a1TgT5UAG7xICI5E270zZYBxvKx9cjiENK5o2+p2+v08nzBlHc9dnz5vg==",
      "path": "devexpress.windowsdesktop.office.core/20.2.5",
      "hashPath": "devexpress.windowsdesktop.office.core.20.2.5.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Pdf.Core/20.2.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-n2hjoVoXLK5M1z+5KqrLIoYKvdOqQX0/GRY2c40uzyhTQej+vZmbVUC3jl6ZSMLQ+issQybClI6bjXTwXJu4vg==",
      "path": "devexpress.windowsdesktop.pdf.core/20.2.5",
      "hashPath": "devexpress.windowsdesktop.pdf.core.20.2.5.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Pdf.Drawing/20.2.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Axem2ELYCeJZJA3EC+MmuRc2TH4ULQ9f25gdE+fiKn9FJJHJ/kjHEeZKDyHqTLGstrdQoQt75r0DiNVA9ZZIfQ==",
      "path": "devexpress.windowsdesktop.pdf.drawing/20.2.5",
      "hashPath": "devexpress.windowsdesktop.pdf.drawing.20.2.5.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Printing.Core/20.2.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-a8tD2tT5c881f1wuTS7cSoCo1ykYX1L14f8dgChSnw3A5YDBeyQbkJ+zWF/psrHdQmsrJC21n/uWkjyQvR0rqA==",
      "path": "devexpress.windowsdesktop.printing.core/20.2.5",
      "hashPath": "devexpress.windowsdesktop.printing.core.20.2.5.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.RichEdit.Core/20.2.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JYyWSTuK28Or4RB+Jxvbrme6CKOuyTJndVLTsAYGh+Js6Fs37OD2ta7wRrZ1VIcPQk4YZw93VlkpHk2Vhkrn8A==",
      "path": "devexpress.windowsdesktop.richedit.core/20.2.5",
      "hashPath": "devexpress.windowsdesktop.richedit.core.20.2.5.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Sparkline.Core/20.2.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-nIUFNQDOAa5Z4GNUEukzovsX3GVLRcw6kgp3AUab9EUig/jluXvnrM/AilSV0RTd40zFDY8gDVKK0bZbz0/f9g==",
      "path": "devexpress.windowsdesktop.sparkline.core/20.2.5",
      "hashPath": "devexpress.windowsdesktop.sparkline.core.20.2.5.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Win.Bars/20.2.5-ctp": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A9MeV9c1EnvRsSbuPFd6JjgkWQQ/H+mgHV4wC3xzWxaS5iQpSQ4ADyLe7wSbW0j7SpLOILj2IMbWCkxurPCBQg==",
      "path": "devexpress.windowsdesktop.win.bars/20.2.5-ctp",
      "hashPath": "devexpress.windowsdesktop.win.bars.20.2.5-ctp.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Win.Editors/20.2.5-ctp": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+/0EWv9TcCd3HZueOE/dDvWD3Xz/t2N4b7paZDt6REwzbkrwAeTuLeTfwZhv+shyNWCLRJyAdkAy90ambz5CBQ==",
      "path": "devexpress.windowsdesktop.win.editors/20.2.5-ctp",
      "hashPath": "devexpress.windowsdesktop.win.editors.20.2.5-ctp.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Win.Grid/20.2.5-ctp": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c6748DNSkX/1G3VpFYU1tLV9O9dK/C59QkPJ2o0F/F65fesPrU92aGvJ8z3xXtEb7eDEEdbRPnbr3RVPFx23gw==",
      "path": "devexpress.windowsdesktop.win.grid/20.2.5-ctp",
      "hashPath": "devexpress.windowsdesktop.win.grid.20.2.5-ctp.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Win.Layout/20.2.5-ctp": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-nxS8sj/92HZqZQcFrzNcDQeE6ecW9Dp/yOwtKUhHb6M7AcZ53wck2vB6LuQnhyJ9e50P3gCAfrzBu87tnJwtgQ==",
      "path": "devexpress.windowsdesktop.win.layout/20.2.5-ctp",
      "hashPath": "devexpress.windowsdesktop.win.layout.20.2.5-ctp.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Win.Printing/20.2.5-ctp": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t+37ktnshbY2zKsxU+qsnSDQxZn1G9ybjitvAu3elr0JWV9JeMxdq0Y1R4FG/ErLkmJOB1whwSkDcIgCYWsqcg==",
      "path": "devexpress.windowsdesktop.win.printing/20.2.5-ctp",
      "hashPath": "devexpress.windowsdesktop.win.printing.20.2.5-ctp.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Win.RichEdit/20.2.5-ctp": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7GjIRiDecs4na+hO114opVWXmWxWuONQiTZiajQ8aLys7NwEU40a8MglvWmJAXxoqS/ZK0nbcui+0E2VPnq10Q==",
      "path": "devexpress.windowsdesktop.win.richedit/20.2.5-ctp",
      "hashPath": "devexpress.windowsdesktop.win.richedit.20.2.5-ctp.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Win.TreeList/20.2.5-ctp": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Bc+rQLAL2urqEZHITk/J+uVrqJi4GbvCLGIAufYjYKooST4IjEdF7HnjyErlvYh0vP95bT2u1fR9LIUmT8juzA==",
      "path": "devexpress.windowsdesktop.win.treelist/20.2.5-ctp",
      "hashPath": "devexpress.windowsdesktop.win.treelist.20.2.5-ctp.nupkg.sha512"
    },
    "DevExpress.WindowsDesktop.Win.Utils/20.2.5-ctp": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8ZtjDsly8pQkGk4UiQBW2N9HQkPUGYAUh65meb+p9sEQaoeuImGrEfeH5lXLM/dwJcrfjJoYpRRaidA0OpEaYA==",
      "path": "devexpress.windowsdesktop.win.utils/20.2.5-ctp",
      "hashPath": "devexpress.windowsdesktop.win.utils.20.2.5-ctp.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
      "path": "microsoft.netcore.platforms/3.1.0",
      "hashPath": "microsoft.netcore.platforms.3.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.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Xuqo5Lf5h1eUAbT8sJwNSEgusyEcQQQcza1R8dxJ6q/1vLSU1SG/WxtgiCPAth14dz/IjBXCxWT/+6E9glX33w==",
      "path": "microsoft.win32.registry/4.6.0",
      "hashPath": "microsoft.win32.registry.4.6.0.nupkg.sha512"
    },
    "Microsoft.Win32.SystemEvents/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==",
      "path": "microsoft.win32.systemevents/4.5.0",
      "hashPath": "microsoft.win32.systemevents.4.5.0.nupkg.sha512"
    },
    "NETStandard.Library/2.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
      "path": "netstandard.library/2.0.3",
      "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
    },
    "runtime.any.System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
      "path": "runtime.any.system.io/4.3.0",
      "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
      "path": "runtime.any.system.reflection/4.3.0",
      "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
      "path": "runtime.any.system.reflection.primitives/4.3.0",
      "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
      "path": "runtime.any.system.runtime/4.3.0",
      "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
      "path": "runtime.any.system.text.encoding/4.3.0",
      "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
      "path": "runtime.any.system.threading.tasks/4.3.0",
      "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel.Annotations/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-29K3DQ+IGU7LBaMjTo7SI7T7X/tsMtLvz1p56LJ556Iu0Dw3pKZw5g8yCYCWMRxrOF0Hr0FU0FwW0o42y2sb3A==",
      "path": "system.componentmodel.annotations/4.4.0",
      "hashPath": "system.componentmodel.annotations.4.4.0.nupkg.sha512"
    },
    "System.Configuration.ConfigurationManager/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
      "path": "system.configuration.configurationmanager/4.5.0",
      "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512"
    },
    "System.Diagnostics.PerformanceCounter/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JUO5/moXgchWZBMBElgmPebZPKCgwW8kY3dFwVJavaNR2ftcc/YjXXGjOaCjly2KBXT7Ld5l/GTkMVzNv41yZA==",
      "path": "system.diagnostics.performancecounter/4.5.0",
      "hashPath": "system.diagnostics.performancecounter.4.5.0.nupkg.sha512"
    },
    "System.Drawing.Common/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==",
      "path": "system.drawing.common/4.5.0",
      "hashPath": "system.drawing.common.4.5.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.IO.FileSystem.AccessControl/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
      "path": "system.io.filesystem.accesscontrol/4.7.0",
      "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512"
    },
    "System.Net.Http.WinHttpHandler/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZmsFZIZ4PL2UfUlfj4KCzzAGGE2SF39ENIqtvfgu0bwMEAe3J3CqZr765E2W6eQQtNK08/8DpHcsA0sAKZdEtA==",
      "path": "system.net.http.winhttphandler/4.4.0",
      "hashPath": "system.net.http.winhttphandler.4.4.0.nupkg.sha512"
    },
    "System.Private.ServiceModel/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lED0s9Lfo2TdniGlFY2rdK1wygFJ7dPRaTHR2Z409nGWfFG1YMuAlrfMhSeYFJ5pbffAlOBxb8hvoYxP3LJ6mg==",
      "path": "system.private.servicemodel/4.4.0",
      "hashPath": "system.private.servicemodel.4.4.0.nupkg.sha512"
    },
    "System.Private.Uri/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
      "path": "system.private.uri/4.3.0",
      "hashPath": "system.private.uri.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.DispatchProxy/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xK6JE0mpsBD+T0qu3V6dmVRa06PxAvIIM/zSjouqP7Sk6X+FQj+9XFRz9GmZk9aJGMU1LX6AgTZIlsYZ64QKsw==",
      "path": "system.reflection.dispatchproxy/4.4.0",
      "hashPath": "system.reflection.dispatchproxy.4.4.0.nupkg.sha512"
    },
    "System.Reflection.Emit/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
      "path": "system.reflection.emit/4.3.0",
      "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.ILGeneration/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
      "path": "system.reflection.emit.ilgeneration/4.3.0",
      "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.Lightweight/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
      "path": "system.reflection.emit.lightweight/4.3.0",
      "hashPath": "system.reflection.emit.lightweight.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.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.Security.AccessControl/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
      "path": "system.security.accesscontrol/4.7.0",
      "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Cng/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
      "path": "system.security.cryptography.cng/4.5.0",
      "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Pkcs/4.5.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lIo52x0AAsZs8r1L58lPXaqN6PP51Z/XJts0kZtbZRNYcMguupxqRGjvc/GoqSKTbYa+aBwbkT4xoqQ7EsfN0A==",
      "path": "system.security.cryptography.pkcs/4.5.2",
      "hashPath": "system.security.cryptography.pkcs.4.5.2.nupkg.sha512"
    },
    "System.Security.Cryptography.ProtectedData/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
      "path": "system.security.cryptography.protecteddata/4.5.0",
      "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Xml/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==",
      "path": "system.security.cryptography.xml/4.5.0",
      "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512"
    },
    "System.Security.Permissions/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
      "path": "system.security.permissions/4.5.0",
      "hashPath": "system.security.permissions.4.5.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
      "path": "system.security.principal.windows/4.7.0",
      "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
    },
    "System.ServiceModel.Http/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0wIEFTSwnBbirqX+f8Q4FjgxNxza5o4Y1BlNOKLmMbu6yvovVrHGmeZoWbZZXqqyJvv4BDHKDmVa0nxZ5twYbw==",
      "path": "system.servicemodel.http/4.4.0",
      "hashPath": "system.servicemodel.http.4.4.0.nupkg.sha512"
    },
    "System.ServiceModel.Primitives/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6rATyMUeeOPVY7XzoneoyzGKVCc62gGl/A6SKrlY0dX0bnMprIrXZF1AXy9Y8ne49JU/2RGGeldFbATYONc/XQ==",
      "path": "system.servicemodel.primitives/4.4.0",
      "hashPath": "system.servicemodel.primitives.4.4.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.Encoding.CodePages/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
      "path": "system.text.encoding.codepages/4.4.0",
      "hashPath": "system.text.encoding.codepages.4.4.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"
    },
    "Fusion++.Engine/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\DevExpress.XtraTreeList.v20.2.dll
md5: 36615BDAA42A2BDA3AE7F1BC1A2F2A34 | sha1: BCFAF2803C5BCC84B71539EC0C1D8E16C8BCFB0F | sha256: BE92867AE7F15893F31C946AFC225BE456D0D8D3817378355D4940592E34DE16 | sha512: 8D084E31DC261E580F27B0DA60B8734BE1118019640F1625F1EDA7225ACFCA3074FE9AE41AE3916810A233BC74F870D0AF4ACC66BF57AF2D470CE4F9526E50A3
tools\DevExpress.XtraRichEdit.v20.2.dll
md5: 3FB7C3B18D9D51CC7A4DA38F1B38D688 | sha1: 2D06692D829BC560873C2BD83197B3FCD24D2E40 | sha256: 3183A12DD9FC3305B2C619C622F21AFEB10436A7CC2079BB0786B727B433CC02 | sha512: 6E885CBD7FED2E3821FEA69F9B82C1FF699166264DD2230E3BD72DE1936FBEA5AB8F7D0D3371256E29F573AAA7EAA339BE9EF03A26BC5FA4154E87827436D34F
tools\DevExpress.XtraPrinting.v20.2.dll
md5: 1F8327AB66F47DA098007B30ADFB7D28 | sha1: C733F9A95DEE876D138A55012886484AEFB65408 | sha256: 3678E250F349BB3A0DF42F7B21997E4770504883D24758563DAC5BBD7FA0CCE0 | sha512: 4476D205082845AAADBF067BDB07A1072F93B29DCDC3FE16838889EA60635FE82D9F89B76E015562F71E3200CBD0B2AD26C986BB437C04F3542F00A7B086CDED
tools\DevExpress.XtraLayout.v20.2.dll
md5: 3893E9855FB58EF28BF3C9F54993F4D6 | sha1: 3528508CC30E5A3863AF2375CF74DE758AB3DF44 | sha256: 1673E22FC403334830DE04A51C48E7095FAC62A0294E59DBA386FD5505ED5EF3 | sha512: 59D194F16A28967364937B3BA9A1008E6253EA789A917B096D347AFBD3846A51A12DD1B651444B3CB6A2669F3309B5A71E92D8EEBCCA58F8271F6A7B620741F8
tools\DevExpress.XtraGrid.v20.2.dll
md5: DDB66ABAD11A196B6EA7F28526D6A32D | sha1: B9E8DFFDB24153215EF710CBA4990A3E541BD10A | sha256: 054D8ACE085891228EE9B138A44A2D2A4EA21AA08B4D625EEE4DC3DCFDFD6DC1 | sha512: C4107BB581C20711EFF827D5A6C6BD6BA30699ACD2C564F62474395F6CE703AAB3896BFE0F9C5D13EB4499A88E4A054EFDEA016419EC4B9356BDE96251D15DBC
tools\DevExpress.XtraEditors.v20.2.dll
md5: B42E2AFA84417AFC719C8AD74107B9A7 | sha1: 9E3DE87B33D19942B0D442C016E9F485AA499E14 | sha256: DF695514DB851FF49BE75E4873879A9248AC95420B92173DB5AFCB8EC8B57DE5 | sha512: EC4F9F6EC9EA761671BA82D51D3F983199BBDB1A590978F9C168FD10EDDD3AC9D5F983EB0DEEA22CEF958C98451BCC7DEE8B7711C6CA1575A870FDC18A39006C
tools\DevExpress.XtraBars.v20.2.dll
md5: 5011BAAA68CF1282469C32D6864CFD05 | sha1: CBD01237404F5AFA2909BCC05EA569768EFFABA9 | sha256: 8C4A1BDC7C4AED348FE085F89888C79407E73CED74098B5F0EA244EE12BEB82D | sha512: 5860E50801A56DBC859FB4350CF06A16C31922D6F9A905DFD6D28A2A4432D945EB72B42F3B91E7746643100A479DBE8936793F6A544A18ABCDD89924CB1F6D6B
tools\DevExpress.Utils.v20.2.dll
md5: A1865A171BB0A9C4FE8DC879B51B6BD2 | sha1: EF1B456292AB45B7845B87D3EE373CD4253FE629 | sha256: FA6A3E75653D9379EDD4BDFA0E328BD9BCEE12848C13DF8B0668257C927D8EC2 | sha512: 27ECD9EFA8914955CF4C9674DB09A2B0C7A04861CE148A93A961A41D0F2ABFE7B20BF16C9F71F6909C726E310912BC462E004DA30219926CAC376E0538E59A16
tools\DevExpress.Sparkline.v20.2.Core.dll
md5: D6368AFCEA68DE2C284585547ED7007F | sha1: 9C6F594010D2E5CE56F700C1F31997C727B04B4F | sha256: 79101BE9AEE36DBC997F8429860E2F1AC9CD716AB85C68B14D83BD87418F0151 | sha512: D47E600C4F765FBD71ACCAF56686ADE6DA5AC25358433CD0A71F0BDCEAC9024BC05AF2B697E21D35B131C6911BBC3A7608165FC491C189D4B8FCEF432F3E3886
tools\DevExpress.RichEdit.v20.2.Core.dll
md5: B09C67B96492926A34E46644200796EF | sha1: 960D94995A8791016374FD23841D4DA0D275F6DC | sha256: 5369E1B36E66DB5A5D44AA6E2B425AEC6F10B0E3901A3C9082C232E951C8DFB3 | sha512: 2B13F83F5AD68DDF67371034A8C9603BEFC62717571B6F7C44A047F368B6E7A55361C02CFAD039E621AF76CC19DD55059C1E41F17A30D87555FEA88CE8A55DFA
tools\DevExpress.Printing.v20.2.Core.dll
md5: 780EBAEA4E8FFFBD05D526792F23BA25 | sha1: B288042E2027D6ECEE81AADD19769960E12C1FFC | sha256: 6823B177155758F4C610D6AA67B20BE52B8D12CC9885A1A1E4D407D5D84A3C23 | sha512: 1BC760CBBFFBA7B1311DD406C6DAC6BD8688FCED8D909DE2B009569CBF5B07B27F4AE1219E6C6E098BD4B06DE517F16AF0C7272674CE16F6F5F000B8F473D784
tools\DevExpress.Pdf.v20.2.Drawing.dll
md5: 4DB9F69E74200933A40DC96E2148086E | sha1: 011FF575663A5B7F856EE0FCC1777321D2FF7CEA | sha256: C15292DB0287F10F9519716F9A4876A7A854E478E5168BA4867C0F51D8DEEF81 | sha512: 03B0CE9DFC715686964FA5CFABA0F9C51787E942DF03E7D1C1ED857198B6F026F3F1B646E94C7B58F2ED8BD002BBC50A4DDBC3D5AFAEAA63FB7FD13C9E4A18DA
tools\DevExpress.Pdf.v20.2.Core.dll
md5: 33B28250A65A327B20D4436E284EEF3A | sha1: D217C63CDC33518666E788021A23453730141253 | sha256: B26481B64281901FC879C57CB578DEA6A217C85F6313F3037B086E0AC7CF9893 | sha512: EE507829D3885182856412556395EAD1D7560A7573AC9D6F28A91686FA975796BBBA0D6E1E13D7056EA58E1E6BEF9F213AAAF3607A3CAB5205C7A9E2D59F5B57
tools\DevExpress.Office.v20.2.Core.dll
md5: C6F48B7FE1D52EA42297ADD7AB3BE6FF | sha1: 55854A1BCF35E2C462DDC03DBF4A50A6A1C76644 | sha256: 1FAAE01C979F44B7C25BED99A189A073C69A97E42AB892C474A17D72566D9215 | sha512: 1F1B740D573B67BDF7C54BB68CE4E66F0FDD86513E541402DFBE06D702AF1953C525BED832BC1D355F8219EC1E658B888D81A84E69F709740FBBE3734D66A935
tools\DevExpress.Images.v20.2.dll
md5: 90B0881EE0E832B215F10BBDFF881373 | sha1: 7815FE040C39520DC00F41922A41A589EE5404BD | sha256: 1FA9AD47A36C6646B8B1AAC0A95FE2C4DA373C30555FF078D5F1FBEEAFAA9C6E | sha512: 9200476DACD8B60F8D0F5D1AE00B7BA50C6830FF0DE491802F1C8527B5B52646FF86419D65DFC64DFF3916DA9FA308F12AD4570FA3FFECA5A32E94E0084662DF
tools\DevExpress.Data.v20.2.dll
md5: 1E567B3929341F52D8E4BBCF6BC14CA6 | sha1: A40E469072F802DD15A4A2184F933674C8007B57 | sha256: 0B79D1827DCA92BE27C03AF0CAD1EEF9FC1F915D4A9B54D082270747BC9EA21C | sha512: BCBE397D3499069D527334165EA56E34C52878C7262C1F5373E515A901F0647B2525E61D37C8E2EDBB35C3C224709B99739B1CECD7097270CB9B9CE67EBFF004
tools\DevExpress.Data.Desktop.v20.2.dll
md5: 26FE16EB3EC81138BEB53ECCE20AA9C6 | sha1: 93F059816C609BD72AEC9C76800ACDF584267D6B | sha256: 3F33BFA9949CF6ECF3F0B84876F6CA55A955D1B7E5B3E224EA9A5C717F4CCF95 | sha512: 80003D820531E353FC25EDF0FC3D440FF6259741C78D501C791BECC203C7B0AAF0B2D2BA02EFACFFD84EF8EEECB96864275E1F9CA6D7AAC1EEF6113892D0FFD3

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 849 Saturday, June 6, 2020 Approved
Fusion++ 1.2 453 Monday, March 16, 2020 Approved
Fusion++ 1.1 596 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