* Makefile: creates two targets "xmldoc" and
"htmldoc" to generate the documentation * Web.csproj: * YavscModel.csproj: * WebControls.csproj: * YavscClient.csproj: * SalesCatalog.csproj: * NpgsqlWorkflow.csproj: * NpgsqlMRPProviders.csproj: * NpgsqlBlogProvider.csproj: ITContentProvider/ITContentProvider.csproj * AssemblyInfo.cs: makes "en" the assembly culture, and normalize my name * HomeController.cs: modifies the xmldoc * Web.config: Modifies the owner email * ITContentProvider.csproj: Activates the documentation generation * App.master: adds a <meta charset=> in the head section
This commit is contained in:
parent
ae38718dd9
commit
1b7b3595e2
14 changed files with 28 additions and 10 deletions
11
Makefile
11
Makefile
|
|
@ -18,10 +18,11 @@ deploy: ddir build
|
|||
xbuild /p:Configuration=$(CONFIG) /p:SkipCopyUnchangedFiles=$(COPYUNCHANGED) /p:DeployDir=../$(DESTDIR) /t:Deploy web/Web.csproj
|
||||
rm -rf $(DESTDIR)/obj
|
||||
mv $(DESTDIR)/Web.config $(DESTDIR)/Web.config.new
|
||||
|
||||
|
||||
rsync: rsync-preprod
|
||||
|
||||
build:
|
||||
build:
|
||||
xbuild /p:Configuration=$(CONFIG) /t:Build Yavsc.sln
|
||||
|
||||
clean:
|
||||
|
|
@ -48,9 +49,13 @@ sourcepkg:
|
|||
debug: build
|
||||
(cd web; export MONO_OPTIONS=--debug; xsp4 --port 8080)
|
||||
|
||||
xmldoc: build
|
||||
(cd web/bin; monodocer -pretty -o ../xmldoc $(DOCASSBS))
|
||||
xmldoc: $(patsubst %,web/bin/%,$(DOCASSBS))
|
||||
mdoc-update $^ $(patsubst %.dll,-i%.xml,$^) --out web/xmldoc
|
||||
|
||||
htmldoc: xmldoc
|
||||
(cd web; monodocs2html -o htmldoc xmldoc)
|
||||
|
||||
docdeploy-prod: htmldoc
|
||||
rsync -ravu web/htmldoc root@$(PRODHOSTDIR)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue