Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.OMR for C++ is distributed as a NuGet package. There is no need to download and install any software - the package can be added to your project directly from Microsoft Visual Studio.
NuGet Package Manager UI is the easiest way to install and update Aspose.OMR for C++ in your project.
NuGet Package Manager Console lets you install and update Aspose.OMR for C++ in your project using PowerShell commands.
Install-Package Aspose.OMR.Cpp
to install the latest version of Aspose.OMR for C++ NuGet package.Open your solution or a project in Microsoft Visual Studio.
Click Tools menu, select NuGet Package Manager and click Package Manager Console.
Checks if there are newer versions available for any installed packages by executing a command Get-Package -updates
. If an update is available, you will see something like this:
Id Versions Description ProjectName
-- -------- ----------- -----------
Aspose.OMR.Cpp {23.2.0} Aspose.OMR for C++ adds optical mark rec... ConsoleApp1
Update Aspose.OMR for C++ to the latest version by executing a command Update-Package Aspose.OMR.Cpp
.
To update to a specific version, provide its name in the -Version
parameter . For example: Update-Package Aspose.OMR.Cpp -Version 23.2.0
.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.