Micro-Manager.NET 2.0.3.3

dotnet add package Micro-Manager.NET --version 2.0.3.3                
NuGet\Install-Package Micro-Manager.NET -Version 2.0.3.3                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Micro-Manager.NET" Version="2.0.3.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Micro-Manager.NET --version 2.0.3.3                
#r "nuget: Micro-Manager.NET, 2.0.3.3"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Micro-Manager.NET as a Cake Addin
#addin nuget:?package=Micro-Manager.NET&version=2.0.3.3

// Install Micro-Manager.NET as a Cake Tool
#tool nuget:?package=Micro-Manager.NET&version=2.0.3.3                

NuGet version (Micro-Manager.NET) NuGet version (Micro-Manager.NET)

Micro-Manager.NET

Using Micro-Manager 2.0.3 with IKVM & C#

Building

  • Get IKVM 8.10.2.

  • Then use Micro-Manager in C#

using mmcorej;
using org.micromanager.@internal;
namespace MMTest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            // Now, set the Java "user.dir" system property to match the C# current directory
            string p = Path.GetDirectoryName("C:/Program Files/Micro-Manager-2.0/");
            Directory.SetCurrentDirectory(p);
            java.lang.System.setProperty("user.dir", p);
            java.lang.System.setProperty("force.annotation.index", "true");
            java.lang.System.setProperty("org.micromanager.corej.path", "C:/Program Files/Micro-Manager-2.0/");
            CMMCore core;
            MMStudio studio;
            try
            {
                MMStudio.main(new string[] { });
                studio = MMStudio.getInstance();
                core = studio.core();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
            Directory.SetCurrentDirectory(Path.GetDirectoryName(Environment.ProcessPath));
        }
    }
}

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Micro-Manager.NET:

Package Downloads
BioImager

A .NET microscopy imaging application based on Bio library. Supports various microscopes by using imported libraries & GUI automation. Supported libraries include Prior® & Zeiss® & all devices supported by Micromanager 2.0 and python-microscope.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.3.3 1,561 10/6/2024
2.0.3.2 1,248 7/14/2024
2.0.3.1 116 7/7/2024
2.0.3 126 7/2/2024

Windows 11 support, dependecy updates and CUDA stitching of tiles.