Mono.Addins is a generic framework for creating extensible applications, and for creating add-ins which extend those applications.
Перейти к файлу
Matt Ward da7cca9dca Temporarily disable external SetupProcess
Tests fail when SetupProcess is run with .NET 6. For now use
in-process support.
2021-03-01 12:15:29 +00:00
Mono.Addins Temporarily disable external SetupProcess 2021-03-01 12:15:29 +00:00
Mono.Addins.CecilReflector Sign assemblies 2021-02-19 13:50:11 +00:00
Mono.Addins.Gui Sign assemblies 2021-02-19 13:50:11 +00:00
Mono.Addins.GuiGtk3 Sign assemblies 2021-02-19 13:50:11 +00:00
Mono.Addins.MSBuild Sign assemblies 2021-02-19 13:50:11 +00:00
Mono.Addins.Setup Sign assemblies 2021-02-19 13:50:11 +00:00
Mono.Addins.SetupProcess Build SetupProcess for .NET 6.0 2021-03-01 12:15:12 +00:00
Samples [Build] Remove RequiresSpecificVersion=false for gtk# as it breaks linux build for gtk# 3.0 installed in gac 2018-04-18 14:22:00 +03:00
Test UnitTests now local copy setup process executable 2021-02-19 14:05:26 +00:00
bot-provisioning Update required mono version 2020-10-05 12:34:24 +02:00
docs Modernize the solution a bit 2017-05-30 19:27:31 -04:00
mautil Fix building warning mautil about binding redirects. 2021-02-19 13:50:11 +00:00
.gitattributes
.gitignore Add .vs to gitignore 2017-02-21 14:11:39 -05:00
AUTHORS
CODE-OF-CONDUCT.md Link Code of Conduct 2020-04-07 19:29:30 -07:00
COPYING
Mono.Addins.sln Try avoiding emitting assembly to run setup process 2021-02-09 10:06:26 +00:00
README
TargetFrameworks.props Update to new MSBuild format in project files. Changed Mono.Addins to .NETStandard2.0 2020-12-16 10:25:15 +01:00
Version.props Move required package metadata to Versions.props 2018-02-14 00:29:39 +01:00
azure-pipelines.yml Update azure-pipelines.yml for Azure Pipelines 2020-10-05 13:23:41 +02:00
mono-addins.snk

README

Mono.Addins is a generic framework for creating extensible applications,
and for creating libraries which extend those applications.

For for information about the library, see:
http://www.mono-project.com/Mono.Addins

Building
--------

To build the library execute:

	./configure
	make

Options:

--prefix=/path/to/prefix

	Install to the specified prefix

--enable-gui

	Include GUI support for GTK2 (requires gtk#2)

--enable-gui-gtk3

	Include GUI support for GTK3 (requires gtk#3)

--enable-tests

	Include NUnit tests (requires nunit)


Building the samples
--------------------

cd to the Samples directory and run make.

Running the NUnit tests
-----------------------

To run the NUnit tests, you need to configure the build with --enable-tests,
cd to Tests, and run 'make test'.