引入 websocket sharp

This commit is contained in:
zhangyazhou
2022-03-14 14:04:39 +08:00
parent 2d0fe5aafb
commit fcb553bfe4
85 changed files with 32965 additions and 11 deletions

4
websocket-sharp/doc/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
## Ignore MonoDevelop build results.
html
mdoc

View File

@@ -0,0 +1,31 @@
#!/bin/sh
#
# @(#) doc.sh ver.0.0.2 2013.01.24
#
# Usage:
# doc.sh
#
# Description:
# Creating documentation for websocket-sharp.
#
###########################################################################
SRC_DIR="../bin/Release_Ubuntu"
XML="${SRC_DIR}/websocket-sharp.xml"
DLL="${SRC_DIR}/websocket-sharp.dll"
DOC_DIR="."
MDOC_DIR="${DOC_DIR}/mdoc"
HTML_DIR="${DOC_DIR}/html"
createDir() {
if [ ! -d $1 ]; then
mkdir -p $1
fi
}
set -e
createDir ${MDOC_DIR}
createDir ${HTML_DIR}
mdoc update --delete -fno-assembly-versions -i ${XML} -o ${MDOC_DIR}/ ${DLL}
mdoc export-html -o ${HTML_DIR}/ ${MDOC_DIR}/