Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/reference-assemblies.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/v4.5.1
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-09-05 22:16:37 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-09-05 23:46:46 +0300
commite263927d482693a94fbba10d04a1b2435c0895dd (patch)
tree6cccc669ebdbf93058a23aab8cd83b48f42185d6 /v4.5.1
parent142cbeb62ffabf1dd9c1414d8dd76f93bcbed0c2 (diff)
[v4.5.1/v4.5.2] Remove accidentally committed debugging code
Diffstat (limited to 'v4.5.1')
-rw-r--r--v4.5.1/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/v4.5.1/Makefile b/v4.5.1/Makefile
index fe419b7..e146e51 100644
--- a/v4.5.1/Makefile
+++ b/v4.5.1/Makefile
@@ -319,20 +319,3 @@ $(foreach asm, $(MSFINAL_KEY_ASSEMBLIES), $(eval $(call KEYFILE_TEMPLATE,$(asm),
$(foreach asm, $(FACADE_ASSEMBLIES), $(eval $(call KEYFILE_TEMPLATE,$(asm), $(MSFINAL_KEY))))
$(foreach asm, $(ASSEMBLIES), $(eval $(call ASSEMBLY_TEMPLATE,$(asm))))
-
-KEY_ASSEMBLIES := $(MONO_KEY_ASSEMBLIES) $(ECMA_KEY_ASSEMBLIES) $(WINFX_KEY_ASSEMBLIES) $(MSFINAL_KEY_ASSEMBLIES)
-
-MISSING_KEY_ASSEMBLIES := $(filter-out $(KEY_ASSEMBLIES), $(ASSEMBLIES))
-
-print-missing:
- @echo $(MISSING_KEY_ASSEMBLIES)
- @echo $(words $(ASSEMBLIES))
- @echo $(words $(KEY_ASSEMBLIES))
-
-gen-api:
- for i in *.dll; do mono ../../api-snapshot/tools/genapi/GenAPI.exe -assembly:$$i -out:../src/v4.5 -typeforwardedTo -assemblyVersion -assemblyAttributes -headerFile:../../api-snapshot/profiles/license-header.txt -libPath:.; done
-# for i in Facades/*.dll; do mono ../../api-snapshot/tools/genapi/GenAPI.exe -assembly:$$i -out:../src/v4.5/Facades -typeforwardedTo -assemblyVersion -assemblyAttributes -headerFile:../../api-snapshot/profiles/license-header.txt -libPath:.; done
-
-gen-api-info-xml:
- for i in *.dll; do echo "INFO: `basename $$i`"; mono-api-info $$i -o=`basename $$i`.xml && sed -i '' '/attributes /d' `basename $$i`.xml && sed -i '' '/attribute .*CompilationRelaxationsAttribute/d' `basename $$i`.xml && sed -i '' '/attribute .*AssemblyDelaySignAttribute/d' `basename $$i`.xml && sed -i '' '/attribute .*AssemblyKeyFileAttribute/d' `basename $$i`.xml && python prettyprint.py `basename $$i`.xml && python prettyprint.py `basename $$i`.xml; done
-