You've already forked linux-packaging-mono
Imported Upstream version 5.4.0.167
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
This commit is contained in:
parent
e49d6f06c0
commit
536cd135cc
12
external/api-doc-tools/.gitignore
vendored
Normal file
12
external/api-doc-tools/.gitignore
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/Test/en.*/
|
||||
/Test/html.*/
|
||||
/Test/DocTest.*
|
||||
/.v2.txt
|
||||
/.v0.txt
|
||||
packages
|
||||
NUnit.*
|
||||
TestResult.xml
|
||||
*.userprefs
|
||||
*.user
|
||||
bin
|
||||
obj
|
6
external/api-doc-tools/.gitmodules
vendored
Normal file
6
external/api-doc-tools/.gitmodules
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
[submodule "external/SharpZipLib"]
|
||||
path = external/SharpZipLib
|
||||
url = https://github.com/icsharpcode/SharpZipLib.git
|
||||
[submodule "external/Lucene.Net.Light"]
|
||||
path = external/Lucene.Net.Light
|
||||
url = https://github.com/mono/Lucene.Net.Light.git
|
27
external/api-doc-tools/Makefile
vendored
Normal file
27
external/api-doc-tools/Makefile
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
MSBUILD = msbuild
|
||||
CONFIGURATION = Release
|
||||
BIN = bin/$(CONFIGURATION)
|
||||
MDOC = $(BIN)/mdoc.exe
|
||||
|
||||
all: build
|
||||
|
||||
build: $(MDOC)
|
||||
|
||||
$(MDOC):
|
||||
$(MSBUILD) apidoctools.sln /p:Configuration=$(CONFIGURATION)
|
||||
|
||||
prepare:
|
||||
git submodule update --init --recursive
|
||||
nuget restore apidoctools.sln
|
||||
|
||||
clean:
|
||||
$(MSBUILD) apidoctools.sln /t:clean
|
||||
rm -rf bin/$(CONFIGURATION)
|
||||
|
||||
check: build check-monodoc check-mdoc
|
||||
|
||||
check-mdoc:
|
||||
cd mdoc; $(MAKE) check
|
||||
|
||||
check-monodoc:
|
||||
cd monodoc; $(MAKE) check
|
22
external/api-doc-tools/README.md
vendored
Normal file
22
external/api-doc-tools/README.md
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
# `mdoc` and `monodoc`
|
||||
|
||||
This repository contains the source for Mono's [documentation toolchain](http://www.mono-project.com/docs/tools+libraries/tools/monodoc/generating-documentation/).
|
||||
|
||||
## Compiling
|
||||
|
||||
### CLI
|
||||
If you've got `make` installed, you can run `make prepare all check`. The available targets are:
|
||||
|
||||
- `prepare`: initializes the submodules, and restores the nuget dependency of NUnit
|
||||
- `all`: compiles everything
|
||||
- `check`: runs unit tests for _monodoc_ and _mdoc_
|
||||
- `check-mdoc`: runs only _mdoc_ tests
|
||||
- `check-monodoc`: runs only _monodoc_ tests
|
||||
|
||||
You can also control some parameters from the command line:
|
||||
|
||||
If you want to compile in debug mode: `make all CONFIGURATION=Debug`
|
||||
|
||||
### Visual Studio
|
||||
Once you run `make prepare all` at least once (to restore submodules), you can open the solution in
|
||||
_Visual Studio_ to compile and debug.
|
61
external/api-doc-tools/apidoctools.sln
vendored
Normal file
61
external/api-doc-tools/apidoctools.sln
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.26206.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mdoc", "mdoc\mdoc.csproj", "{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "monodoc", "monodoc\monodoc.csproj", "{6E644802-B579-4037-9809-9CF4C7172C9D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monodoc.Test", "monodoc\Test\Monodoc.Test.csproj", "{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpZipLib", "external\SharpZipLib\ICSharpCode.SharpZipLib.NET45\ICSharpCode.SharpZipLib.csproj", "{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{7DA7CD97-614F-4BCD-A2FA-B379590CEA48}.Release|x86.Build.0 = Release|Any CPU
|
||||
{6E644802-B579-4037-9809-9CF4C7172C9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{6E644802-B579-4037-9809-9CF4C7172C9D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{6E644802-B579-4037-9809-9CF4C7172C9D}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{6E644802-B579-4037-9809-9CF4C7172C9D}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{6E644802-B579-4037-9809-9CF4C7172C9D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{6E644802-B579-4037-9809-9CF4C7172C9D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{6E644802-B579-4037-9809-9CF4C7172C9D}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{6E644802-B579-4037-9809-9CF4C7172C9D}.Release|x86.Build.0 = Release|Any CPU
|
||||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}.Release|x86.Build.0 = Release|Any CPU
|
||||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}.Release|x86.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(MonoDevelopProperties) = preSolution
|
||||
StartupItem = mdoc.csproj
|
||||
EndGlobalSection
|
||||
EndGlobal
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user