• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Mono.Addins/H26-Jul-2016-25,14814,321

Mono.Addins.CecilReflector/H26-Jul-2016-28,49519,640

Mono.Addins.Gui/H26-Jul-2016-7,6816,448

Mono.Addins.GuiGtk3/H03-May-2022-5,9904,808

Mono.Addins.MSBuild/H26-Jul-2016-310196

Mono.Addins.Setup/H26-Jul-2016-9,5666,562

Samples/H26-Jul-2016-5,0463,815

Test/H26-Jul-2016-5,5143,927

docs/H26-Jul-2016-12,28912,103

mautil/H26-Jul-2016-423318

support/H03-May-2022-8955

.gitattributesH A D26-Jul-2016504 1410

.gitignoreH A D26-Jul-2016365 3630

AUTHORSH A D26-Jul-201645 41

COPYINGH A D26-Jul-20161.1 KiB2318

ChangeLogH A D26-Jul-201610.7 KiB318222

Makefile.amH A D26-Jul-20162.4 KiB5145

Makefile.includeH A D03-May-20221.4 KiB3728

Mono.Addins.Setup.nuspecH A D26-Jul-2016856 2019

Mono.Addins.mdwH A D26-Jul-2016160 66

Mono.Addins.nuspecH A D26-Jul-2016631 1716

Mono.Addins.slnH A D26-Jul-201620.2 KiB258256

NEWSH A D26-Jul-201648 73

Packages.mdseH A D26-Jul-20162.5 KiB4848

READMEH A D26-Jul-2016793 4625

autogen.shH A D26-Jul-20162.1 KiB8461

configure.acH A D26-Jul-20163.7 KiB144113

makefile-sample.includeH A D26-Jul-2016872 2014

mono-addins.spec.inH A D26-Jul-20161.1 KiB4738

policy.config.inH A D26-Jul-2016373 1110

xbuild.includeH A D26-Jul-20161.6 KiB6851

README

1
2Mono.Addins is a generic framework for creating extensible applications,
3and for creating libraries which extend those applications.
4
5For for information about the library, see:
6http://www.mono-project.com/Mono.Addins
7
8Building
9--------
10
11To build the library execute:
12
13	./configure
14	make
15
16Options:
17
18--prefix=/path/to/prefix
19
20	Install to the specified prefix
21
22--enable-gui
23
24	Include GUI support for GTK2 (requires gtk#2)
25
26--enable-gui-gtk3
27
28	Include GUI support for GTK3 (requires gtk#3)
29
30--enable-tests
31
32	Include NUnit tests (requires nunit)
33
34
35Building the samples
36--------------------
37
38cd to the Samples directory and run make.
39
40Running the NUnit tests
41-----------------------
42
43To run the NUnit tests, you need to configure the build with --enable-tests,
44cd to Tests, and run 'make test'.
45
46