Skip to content
This repository was archived by the owner on May 29, 2024. It is now read-only.

Commit d5a8ad4

Browse files
committedAug 9, 2013
Initial Xamarin.Android documentation import.
Documentation comes from two sources. Documentation for bound assemblies comes from the Android SDK documentation, which is licensed under the Apache 2.0 license. This includes: docs/Mono.Android docs/Mono.Android.GoogleMaps docs/Mono.Android.Support.v4 docs/Mono.Android.Support.v13 Documentation for docs/OpenTK and docs/OpenTK-1.0 comes from importing the C# XML doc comments within the OpenTK source code.
0 parents  commit d5a8ad4

File tree

6,040 files changed

+2225773
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,040 files changed

+2225773
-0
lines changed
 

Diff for: ‎Makefile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
TOP := $(shell pwd)
2+
3+
all: assemble
4+
5+
validate:
6+
@echo Validating....
7+
for index in $(wildcard docs/*/en/index.xml) ; do \
8+
mdoc validate $$index ; \
9+
mdoc validate `dirname $$index`; \
10+
done; \
11+
@echo success
12+
13+
assemble:
14+
echo mdoc assemble -o MonoAndroid-lib $(wildcard docs/*/en)
15+
16+
install: MonoAndroid-lib.tree MonoAndroid-lib.zip
17+
cp $^ /Library/Frameworks/Mono.framework/External/monodoc/
18+

Diff for: ‎MonoAndroid-docs.source

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0"?>
2+
<monodoc>
3+
<node label="Xamarin.Android Framework" name="MonoAndroid-lib" parent="libraries"/>
4+
<!--
5+
<source provider="man" basefile="MonoAndroid-man" path="man"/>
6+
-->
7+
<source provider="ecma" basefile="MonoAndroid-lib" path="MonoAndroid-lib"/>
8+
</monodoc>
9+

0 commit comments

Comments
 (0)