File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
src/dotnet/ReSharperPlugin.RimworldDev Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 2024.1.7
4+ * Solved some incompatibilities for ReSharper
5+
36## 2024.1.6
47 * Restore missing new project template
58 * Start automatically publishing ReSharper versions
Original file line number Diff line number Diff line change 44DotnetPluginId =ReSharperPlugin.RimworldDev
55DotnetSolution =ReSharperPlugin.RimworldDev.sln
66RiderPluginId =com.jetbrains.rider.plugins.rimworlddev
7- PluginVersion =2024.1.6
7+ PluginVersion =2024.1.7
88
99BuildConfiguration =Release
1010
Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ public static List<string> GetHierarchy(ITreeNode treeNode)
282282 // classes that it inherits from
283283 public static List < IField > GetAllPublicFields ( ITypeElement desiredClass , ISymbolScope symbolScope )
284284 {
285- return desiredClass . EnumerateTypeMembersWholeHierarchyIncludeOverridenMembersFromBase < IField > ( )
285+ return desiredClass . GetAllClassMembers < IField > ( )
286286 . Where ( field => ! field . Member . GetAttributeInstances ( AttributesSource . All )
287287 . Select ( attribute => attribute . GetAttributeShortName ( ) ) . Contains ( "UnsavedAttribute" ) )
288288 . Where ( member =>
You can’t perform that action at this time.
0 commit comments