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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-06-01Make culture always return neutral when null or emptyJb Evain
2015-06-01Init parameter collection with the param countFrancois Valdy
- to reduce resizes
2015-06-01Reuse new optimize TryGetAssemblyNameReferenceJb Evain
2015-06-01Remove Object prefixJb Evain
2015-06-01Make OpCode implement IEquatableJb Evain
2015-06-01Merge pull request #221 from gluck/perfsJb Evain
Performance improvements
2015-06-01Faster AssemblyNameReference comparisonFrancois Valdy
- implemented leftover TODO - faster than forcing FullName generation
2015-05-31Remove unnecessary clear callFrancois Valdy
- already done in Shift
2015-05-31Make MetadataToken IEquatableFrancois Valdy
- when used as key in a dict, implementing IEquatable will avoid object boxing when comparing keys. - big perf increase when loading assemblies.
2015-05-28Remove support for net_2_0Jb Evain
2015-05-28Adjust nuspecJb Evain
2015-05-28Simplify ifdefing out of CryptoServiceJb Evain
2015-05-28Remove support for building against SL and the CF in favor of a PCLJb Evain
2015-05-28Use the 344 profileJb Evain
2015-05-28Compiling version of PCLJb Evain
2015-05-28On-going work for PCL supportJb Evain
2015-05-28Merge pull request #214 from jbevain/sysruntimeJb Evain
Add support for treating System.Runtime as the core library
2015-05-27Merge pull request #219 from joj/patch-2Jb Evain
Fix xbuilding Cecil
2015-05-27Now working on xBuild :Sjoj
Sorry for this. The correct version is this, not the last one I sent.
2015-05-27Merge pull request #218 from joj/patch-2Jb Evain
Minor fix for xBuild compatibility
2015-05-27Minor fix for xBuild compatibilityjoj
Without colons, xBuild will error out on the import (and on the condition). MSBuild likes it, though...
2015-05-27Merge pull request #217 from kzu/masterJb Evain
Allow upstream consumers to override build settings.
2015-05-27Allow upstream consumers to override build settings.Daniel Cazzulino
Projects consuming and distributing Cecil in environments they don't control (i.e. an addin inside VS or XS) risk having the environment load an incompatible version of Cecil from another addin or location (depending on the process/domain configuration and the probing paths set up for the host). To shield from this issue, XS has forked Cecil, changed its assembly name and signing key, and now it has to maintain that fork in sync with upstream. Others with similar requirements (in particular, the Xamarin Visual Studio extension team now) will need to do the same, with the added maintainability burden. This commit provides a conditional import that allows products that distribute Cecil to tweak settings that will affect its build, without having to fork the project unnecessarily. The Mono.Cecil.overrides file is a plain MSBuild file with additional properties that can exist anywhere upwards from the current Cecil repo clone path, making it very flexible even if the project is submoduled. It's imported before the C# targets so that changes to the assembly name, signing key, etc. are properly overwritten before the C# targets process them. This involved moving the existing .settings files down in all .csproj files. Fixes #216
2015-05-15Do not run metro test on MonoJb Evain
2015-05-12Refactor null checkJb Evain
2015-05-11Add support for importing function pointersJb Evain
2015-05-11Switch from Corlib to CoreLibraryJb Evain
2015-05-11Fix testsJb Evain
2015-05-11Fix internal ctor of ANRJb Evain
2015-05-11Revert "Share a common SignatureReader"Jb Evain
This reverts commit 50452a3c059e41038cd7cd0f0009d2efa10271f9.
2015-05-11AssemblyNameReference.Version should never return null. Fixes #212Jb Evain
2015-05-08Share a common SignatureReaderJb Evain
2015-04-30Build on 4.5 and not on 4.5.1Jb Evain
2015-04-30Rename corlib to core_libraryJb Evain
2015-04-30Rename Corlib to CoreLibrary in public symbolsJb Evain
2015-04-30Add support for reading System.Runtime as corlibJb Evain
2015-04-28The arg0 for value types is a managed pointerJb Evain
2015-04-27do not read behind signature boundariesRadek Doulik
- when NumNamed count is wrong - assemblies with such a problem are used in #28198
2015-04-25Add gitter badgeJb Evain
2015-04-25Add link to the devlogJb Evain
2015-04-25Move CheckStream to MixinJb Evain
2015-04-25Fix CF buildJb Evain
2015-04-25Fix SL buildJb Evain
2015-04-25Fix styleJb Evain
2015-04-25Merge branch 'importer'Jb Evain
2015-04-250.9.6Jb Evain
2015-04-22Simplify headerJb Evain
2015-04-22Simplify return statements when possibleJb Evain
2015-04-22Update copyrightsJb Evain
2015-04-15Set the rva to zero when setting initial values to avoid resolving later onJb Evain