We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b769eb commit 701e189Copy full SHA for 701e189
1 file changed
change-notes/1.26/analysis-csharp.md
@@ -21,6 +21,10 @@ The following changes in version 1.26 affect C# analysis in all applications.
21
* Partial method bodies are extracted. Previously, partial method bodies were skipped completely.
22
* Inferring the lengths of implicitely sized arrays is fixed. Previously, multidimensional arrays were always extracted with the same length for
23
each dimension. With the fix, the array sizes `2` and `1` are extracted for `new int[,]{{1},{2}}`. Previously `2` and `2` were extracted.
24
+* The extractor is now assembly-insensitive by default. This means that two entities with the same
25
+ fully-qualified name are now mapped to the same entity in the resulting database, regardless of
26
+ whether they belong to different assemblies. Assembly sensitivity can be reenabled by passing
27
+ `--assemblysensitivetrap` to the extractor.
28
29
## Changes to libraries
30
0 commit comments