Inkscape 0.1.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package Inkscape --version 0.1.6
NuGet\Install-Package Inkscape -Version 0.1.6
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.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Inkscape --version 0.1.6
#r "nuget: Inkscape, 0.1.6"
#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.6

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

Inkscape executable for linux and windows

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 24,708 1/22/2024
0.1.11 17,361 8/19/2023
0.1.10 7,106 6/17/2023
0.1.9 683 6/17/2023
0.1.8 714 6/17/2023
0.1.7 975 6/16/2023
0.1.6 559 6/15/2023
0.1.5 998 6/13/2023
0.1.4 653 6/13/2023
0.1.3 587 6/10/2023
0.1.2 521 6/2/2023
0.1.1 475 6/2/2023
0.1.0 841 6/1/2023