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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web/remap
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-10-22 20:52:19 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-10-22 20:52:19 +0400
commitf8c9c8751290f47fa17fa5851ce97ddc9c443bf4 (patch)
tree46e4a8bc6c0a3996df0f0c78753519ebcc93572d /web/remap
parent231527ee6286af554c59396037c8504a6564395e (diff)
Sniff, sniff
Remove the old (really) stuff to generate the website from makefiles.
Diffstat (limited to 'web/remap')
-rw-r--r--web/remap36
1 files changed, 0 insertions, 36 deletions
diff --git a/web/remap b/web/remap
deleted file mode 100644
index 28daca0acfc..00000000000
--- a/web/remap
+++ /dev/null
@@ -1,36 +0,0 @@
-* History of remapping
-
- The Mono runtime was shipped with the .NET 1.1 library APIs,
- but until recently we did not have strong names or Global
- Assembly Cache support so our libraries did not actually
- encode the proper information about references.
-
- Lacking this, in the early days of Mono we hardcoded our code
- generator to set the values to the version of the .NET 1.0 API
- to allow code to move back and forth between Windows and Linux.
-
- With the deployment of the GAC to Mono we no longer distribute
- assemblies without version information, and they are only
- available through a versioned directory.
-
- To assist people in migrating their applications from the
- pre-Beta rollout of Mono, the runtime has a special feature to
- remap references to the System.* assemblies with version 3300
- to version 5000 but a warning is displayed:
-
- <pre>
- Compat mode: the request from XXXX to load YYYY was remapped (http://www.go-mono.com/remap.html)
- </pre>
-
- To solve this issue, use a new version of Mono to rebuild the
- program listed as XXXX, this will remove the warning.
-
- Alternatively, if you do not have the source, you can set the
- environment variable MONO_SILENT_WARNING to eliminate those
- messages:
-
- <pre>
- export MONO_SILENT_WARNING=1
- </pre>
-
-