Inkscape 0.1.12

dotnet add package Inkscape --version 0.1.12
NuGet\Install-Package Inkscape -Version 0.1.12
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="Inkscape" Version="0.1.12" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Inkscape --version 0.1.12
#r "nuget: Inkscape, 0.1.12"
#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 Inkscape as a Cake Addin
#addin nuget:?package=Inkscape&version=0.1.12

// Install Inkscape as a Cake Tool
#tool nuget:?package=Inkscape&version=0.1.12

Portable Inkscape executable for linux and windows

Current shipped Inkscape version: 1.2.2

Example usage:

using System.Text;
using CliWrap;
using Inkscape;

using MemoryStream stdOut = new();
using MemoryStream stdError = new();

Command command = Cli
    .Wrap(InkscapePaths.InkscapeExecutablePath)
    .WithArguments(InkscapePaths.InkscapeExecutableRequiredArgs.Concat(new[] { "--version" }));
try
{
    await (command | (stdOut, stdError))
        .ExecuteAsync();
}
catch (Exception ex)
{
    string errorMessage = Encoding.UTF8.GetString(stdError.ToArray());
    throw new(errorMessage, ex);
}

string message = Encoding.UTF8.GetString(stdOut.ToArray());
Console.WriteLine(message);
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.
  • net7.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.12 21,306 1/22/2024
0.1.11 17,358 8/19/2023
0.1.10 7,104 6/17/2023
0.1.9 680 6/17/2023
0.1.8 712 6/17/2023
0.1.7 952 6/16/2023
0.1.6 557 6/15/2023
0.1.5 993 6/13/2023
0.1.4 651 6/13/2023
0.1.3 585 6/10/2023
0.1.2 519 6/2/2023
0.1.1 473 6/2/2023
0.1.0 837 6/1/2023