From 89a95e8bd244ab024bccd04cee32b3bb22093521 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Mon, 4 Apr 2022 14:49:54 +0200 Subject: [PATCH] docs: convert 'csharp' page to rst Signed-off-by: Peter Krempa Reviewed-by: Pavel Hrdina --- docs/csharp.html.in | 52 --------------------------------------------- docs/csharp.rst | 38 +++++++++++++++++++++++++++++++++ docs/meson.build | 2 +- 3 files changed, 39 insertions(+), 53 deletions(-) delete mode 100644 docs/csharp.html.in create mode 100644 docs/csharp.rst diff --git a/docs/csharp.html.in b/docs/csharp.html.in deleted file mode 100644 index f94c08ff8d..0000000000 --- a/docs/csharp.html.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - -

C# API bindings

- -
    - -

    Description

    - -

    - The C# libvirt bindings are a class library. They use a Microsoft - Visual Studio project architecture, and have been tested with Windows - .NET, and Mono, on both Linux and Windows. -

    -

    - Compiling them produces LibvirtBindings.dll, which can - be added as a .NET reference to any .NET project needing access - to libvirt. -

    - -

    Requirements

    - -

    - These bindings depend upon the libvirt libraries being installed. -

    -

    - In the .NET case, this is libvirt-0.dll, produced from - compiling libvirt for windows. -

    - -

    GIT source repository

    -

    - The C# bindings source code is maintained in a git repository available on - gitlab.com: -

    - -
    -git clone https://gitlab.com/libvirt/libvirt-csharp.git
    -
    - -

    Authors

    - -

    - The C# bindings are the work of Arnaud Champion - <arnaud.champion AT devatom.fr>, - based upon the previous work of Jaromír Červenka. -

    - - - diff --git a/docs/csharp.rst b/docs/csharp.rst new file mode 100644 index 0000000000..96fac1b442 --- /dev/null +++ b/docs/csharp.rst @@ -0,0 +1,38 @@ +=============== +C# API bindings +=============== + +Description +----------- + +The C# libvirt bindings are a class library. They use a Microsoft Visual Studio +project architecture, and have been tested with Windows .NET, and Mono, on both +Linux and Windows. + +Compiling them produces **LibvirtBindings.dll**, which can be added as a .NET +reference to any .NET project needing access to libvirt. + +Requirements +------------ + +These bindings depend upon the libvirt libraries being installed. + +In the .NET case, this is **libvirt-0.dll**, produced from compiling libvirt for +windows. + +GIT source repository +--------------------- + +The C# bindings source code is maintained in a ``git`` repository available on +`gitlab.com `__: + +:: + + git clone https://gitlab.com/libvirt/libvirt-csharp.git + +Authors +------- + +The C# bindings are the work of Arnaud Champion <`arnaud.champion AT +devatom.fr `__>, based upon the +previous work of Jaromír Červenka. diff --git a/docs/meson.build b/docs/meson.build index f54b56ed01..2295fbf752 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -19,7 +19,6 @@ docs_assets = [ docs_html_in_files = [ '404', - 'csharp', 'docs', 'formatcaps', 'formatdomaincaps', @@ -52,6 +51,7 @@ docs_rst_files = [ 'compiling', 'contact', 'contribute', + 'csharp', 'daemons', 'dbus', 'downloads',