Skip to content

Revit 2026 Support #165

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog
- 2025-03-04 **2.1.0**
- 2025-04-03 **2.2.0**
- Support Autodesk Revit version 2026.
- 2025-04-03 **2.1.0**
- Support Autodesk Revit version 2025.
- 2023-09-13 **2.0.2**
- Improvement user interface and user experience with coding.
Expand Down
4 changes: 2 additions & 2 deletions Installer/Installer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
const string projectName = "RevitPythonShell";
const string outputName = "RevitPythonShell";
const string outputDir = "output";
const string version = "2.1.0";
const string version = "2.2.0";

var fileName = new StringBuilder().Append(outputName).Append("-").Append(version);
var project = new Project
Expand Down Expand Up @@ -67,4 +67,4 @@ WixEntity[] GenerateWixEntities()
}

return versionStorages.Select(storage => new Dir(storage.Key, storage.Value.ToArray())).Cast<WixEntity>().ToArray();
}
}
2 changes: 1 addition & 1 deletion PythonConsoleControl/PythonConsoleControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<!--
Copyright (c) 2010 Joe Moorhouse
-->
<Grid Name="grid">
<Grid x:Name="Grid">
</Grid>
</UserControl>
16 changes: 8 additions & 8 deletions PythonConsoleControl/PythonConsoleControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ namespace PythonConsoleControl
/// </summary>
public partial class IronPythonConsoleControl : UserControl
{
PythonConsolePad pad;
PythonConsolePad _pad;

/// <summary>
/// Perform the action on an already instantiated PythonConsoleHost.
/// </summary>
public void WithConsoleHost(Action<PythonConsoleHost> action)
{
pad.Host.WhenConsoleCreated(action);
_pad.Host.WhenConsoleCreated(action);
}

public IronPythonConsoleControl()
{
InitializeComponent();
pad = new PythonConsolePad();
grid.Children.Add(pad.Control);
_pad = new PythonConsolePad();
Grid.Children.Add(_pad.Control);
// Load our custom highlighting definition
IHighlightingDefinition pythonHighlighting;
using (Stream s = typeof(IronPythonConsoleControl).Assembly.GetManifestResourceStream("PythonConsoleControl.Resources.Python.xshd"))
Expand All @@ -43,17 +43,17 @@ public IronPythonConsoleControl()
}
// and register it in the HighlightingManager
HighlightingManager.Instance.RegisterHighlighting("Python Highlighting", new string[] { ".cool" }, pythonHighlighting);
pad.Control.SyntaxHighlighting = pythonHighlighting;
IList<IVisualLineTransformer> transformers = pad.Control.TextArea.TextView.LineTransformers;
_pad.Control.SyntaxHighlighting = pythonHighlighting;
IList<IVisualLineTransformer> transformers = _pad.Control.TextArea.TextView.LineTransformers;
for (int i = 0; i < transformers.Count; ++i)
{
if (transformers[i] is HighlightingColorizer) transformers[i] = new PythonConsoleHighlightingColorizer(pythonHighlighting, pad.Control.Document);
if (transformers[i] is HighlightingColorizer) transformers[i] = new PythonConsoleHighlightingColorizer(pythonHighlighting, _pad.Control.Document);
}
}

public PythonConsolePad Pad
{
get { return pad; }
get { return _pad; }
}
}
}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Various differences between IronPython and CPython can follow at [Differences Ir

## Installation

Please follow last release at section [Release](https://github.com/architecture-building-systems/revitpythonshell/releases/latest) support version Support From Revit 2018-2025.
Please follow last release at section [Release](https://github.com/architecture-building-systems/revitpythonshell/releases/latest) support version Support From Revit 2018-2026.

Older versions:
- [Installer for Autodesk Revit 2022](https://github.com/architecture-building-systems/revitpythonshell/releases/download/2021.06.20/2021.06.20_Setup_RevitPythonShell_2022.exe)
Expand Down Expand Up @@ -119,6 +119,7 @@ This project is licensed under the terms of the [MIT License](http://opensource.
* [Nice3Point](https://github.com/Nice3point) for process CI/CD
* [Chuong Mep](https://github.com/chuongmep/) a people like maintain for project open source.
* [Roman Golev](https://github.com/romangolev/) (port to Revit 2025)
* [Jean-Marc Couffin](https://github.com/jmcouffin/) (port to Revit 2026)
* many, many users with questions, bug reports etc!

Also, many thanks to the
Expand Down
17 changes: 17 additions & 0 deletions RevitPythonShell.sln
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ Global
Release R23|Any CPU = Release R23|Any CPU
Release R24|Any CPU = Release R24|Any CPU
Release R25|Any CPU = Release R25|Any CPU
Release R26|Any CPU = Release R26|Any CPU
Debug R26|Any CPU = Debug R26|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7E37F14E-D840-42F8-8CA6-90FFC5497972}.Debug R22|Any CPU.ActiveCfg = Debug R22|Any CPU
Expand Down Expand Up @@ -69,6 +71,9 @@ Global
{7E37F14E-D840-42F8-8CA6-90FFC5497972}.Release R24|Any CPU.Build.0 = Release R24|Any CPU
{7E37F14E-D840-42F8-8CA6-90FFC5497972}.Release R25|Any CPU.ActiveCfg = Release R25|Any CPU
{7E37F14E-D840-42F8-8CA6-90FFC5497972}.Release R25|Any CPU.Build.0 = Release R25|Any CPU
{7E37F14E-D840-42F8-8CA6-90FFC5497972}.Release R26|Any CPU.ActiveCfg = Release R26|Any CPU
{7E37F14E-D840-42F8-8CA6-90FFC5497972}.Release R26|Any CPU.Build.0 = Release R26|Any CPU
{7E37F14E-D840-42F8-8CA6-90FFC5497972}.Debug R26|Any CPU.ActiveCfg = Debug R26|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug R22|Any CPU.ActiveCfg = Debug|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug R22|Any CPU.Build.0 = Debug|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug R23|Any CPU.ActiveCfg = Debug|Any CPU
Expand All @@ -77,6 +82,8 @@ Global
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug R24|Any CPU.Build.0 = Debug|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug R25|Any CPU.ActiveCfg = Debug|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug R25|Any CPU.Build.0 = Debug|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug R26|Any CPU.ActiveCfg = Debug|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug R26|Any CPU.Build.0 = Debug|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Installer|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -96,6 +103,8 @@ Global
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Release R24|Any CPU.Build.0 = Release|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Release R25|Any CPU.ActiveCfg = Release|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Release R25|Any CPU.Build.0 = Release|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Release R26|Any CPU.ActiveCfg = Release|Any CPU
{F1152D68-346B-4F48-8DB7-BE67B5CB1F49}.Release R26|Any CPU.Build.0 = Release|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug R22|Any CPU.ActiveCfg = Debug R22|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug R22|Any CPU.Build.0 = Debug R22|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug R23|Any CPU.ActiveCfg = Debug R23|Any CPU
Expand All @@ -104,6 +113,8 @@ Global
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug R24|Any CPU.Build.0 = Debug R24|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug R25|Any CPU.ActiveCfg = Debug R25|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug R25|Any CPU.Build.0 = Debug R25|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug R26|Any CPU.ActiveCfg = Debug R26|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug R26|Any CPU.Build.0 = Debug R26|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug|Any CPU.ActiveCfg = Debug R22|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Debug|Any CPU.Build.0 = Debug R22|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Installer|Any CPU.ActiveCfg = Release R23|Any CPU
Expand All @@ -123,10 +134,13 @@ Global
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Release R24|Any CPU.Build.0 = Release R24|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Release R25|Any CPU.ActiveCfg = Release R25|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Release R25|Any CPU.Build.0 = Release R25|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Release R26|Any CPU.ActiveCfg = Release R26|Any CPU
{C8446636-C663-409F-82D0-72C0D55BBA1C}.Release R26|Any CPU.Build.0 = Release R26|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Debug R22|Any CPU.ActiveCfg = Debug|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Debug R23|Any CPU.ActiveCfg = Debug|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Debug R24|Any CPU.ActiveCfg = Debug|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Debug R25|Any CPU.ActiveCfg = Debug|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Debug R26|Any CPU.ActiveCfg = Debug|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Installer|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -139,10 +153,12 @@ Global
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Release R23|Any CPU.ActiveCfg = Release|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Release R24|Any CPU.ActiveCfg = Release|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Release R25|Any CPU.ActiveCfg = Release|Any CPU
{B0FECFED-4451-4C7D-ACB7-59CC6F12FBAF}.Release R26|Any CPU.ActiveCfg = Release|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Debug R22|Any CPU.ActiveCfg = Debug|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Debug R23|Any CPU.ActiveCfg = Debug|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Debug R24|Any CPU.ActiveCfg = Debug|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Debug R25|Any CPU.ActiveCfg = Debug|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Debug R26|Any CPU.ActiveCfg = Debug|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Installer|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -154,6 +170,7 @@ Global
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Release R23|Any CPU.ActiveCfg = Release|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Release R24|Any CPU.ActiveCfg = Release|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Release R25|Any CPU.ActiveCfg = Release R25|Any CPU
{0DF5F952-C36B-4C97-B0CD-678C61093311}.Release R26|Any CPU.ActiveCfg = Release R26|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
19 changes: 17 additions & 2 deletions RevitPythonShell/RevitPythonShell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<Description>Revit Python Shell addin for Revit</Description>
<EnableDefaultItems>false</EnableDefaultItems>
<StartAction>Program</StartAction>
<Configurations>Debug R22;Debug R23;Debug R24;Debug R25</Configurations>
<Configurations>$(Configurations);Release R18;Release R19;Release R20;Release R21;Release R22;Release R23;Release R24;Release R25</Configurations>
<Configurations>Debug R22;Debug R23;Debug R24;Debug R25;Debug R26</Configurations>
<Configurations>$(Configurations);Release R18;Release R19;Release R20;Release R21;Release R22;Release R23;Release R24;Release R25;Release R26</Configurations>
</PropertyGroup>

<PropertyGroup Condition="$(Configuration.Contains('Debug'))">
Expand Down Expand Up @@ -84,6 +84,15 @@
<UseWPF>true</UseWPF>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

<PropertyGroup Condition="$(Configuration.Contains('R26'))">
<RevitVersion>2026</RevitVersion>
<TargetFramework>net8.0-windows</TargetFramework>
<DefineConstants>$(DefineConstants);R26</DefineConstants>
<StartProgram>$(ProgramW6432)\Autodesk\Revit 2026\Revit.exe</StartProgram>
<UseWPF>true</UseWPF>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<Choose>
<When Condition="$(Configuration.Contains('R18'))">
<ItemGroup>
Expand Down Expand Up @@ -239,6 +248,12 @@
<PackageReference Include="Revit_All_Main_Versions_API_x64" Version="2025.0.0" IncludeAssets="build; compile" PrivateAssets="All" />
</ItemGroup>
</When>
<When Condition="$(Configuration.Contains('R26'))">
<ItemGroup>
<FrameworkReference Include="Microsoft.WindowsDesktop.App" />
<PackageReference Include="Revit_All_Main_Versions_API_x64" Version="2026.0.0" IncludeAssets="build; compile" PrivateAssets="All" />
</ItemGroup>
</When>
</Choose>
<PropertyGroup>
<Version>$(RevitVersion)</Version>
Expand Down
16 changes: 14 additions & 2 deletions RpsRuntime/RpsRuntime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<EnableDefaultItems>false</EnableDefaultItems>
<PlatformTarget>x64</PlatformTarget>
<Configurations>Debug R22;Debug R23;Debug R24;Debug R25</Configurations>
<Configurations>$(Configurations);Release R18;Release R19;Release R20;Release R21;Release R22;Release R23;Release R24;Release R25</Configurations>
<Configurations>Debug R22;Debug R23;Debug R24;Debug R25;Debug R26</Configurations>
<Configurations>$(Configurations);Release R18;Release R19;Release R20;Release R21;Release R22;Release R23;Release R24;Release R25;Release R26</Configurations>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

Expand Down Expand Up @@ -73,6 +73,12 @@
<DefineConstants>$(DefineConstants);R25</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="$(Configuration.Contains('R26'))">
<RevitVersion>2026</RevitVersion>
<TargetFramework>net8.0-windows</TargetFramework>
<DefineConstants>$(DefineConstants);R26</DefineConstants>
</PropertyGroup>

<PropertyGroup>
<Version>$(RevitVersion)</Version>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
Expand Down Expand Up @@ -196,5 +202,11 @@
<PackageReference Include="Revit_All_Main_Versions_API_x64" Version="2025.0.0" IncludeAssets="build; compile" PrivateAssets="All" />
</ItemGroup>
</When>
<When Condition="$(Configuration.Contains('R26'))">
<ItemGroup>
<PackageReference Include="IronPython" Version="3.4.2" PrivateAssets="None" />
<PackageReference Include="Revit_All_Main_Versions_API_x64" Version="2026.0.0" IncludeAssets="build; compile" PrivateAssets="All" />
</ItemGroup>
</When>
</Choose>
</Project>
5 changes: 4 additions & 1 deletion build/Build.csproj.DotSettings
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_SIMPLE_ANONYMOUSMETHOD_ON_SINGLE_LINE/@EntryValue">False</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateInstanceFields/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateStaticFields/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=4a98fdf6_002D7d98_002D4f5a_002Dafeb_002Dea44ad98c70c/@EntryIndexedValue">&lt;Policy&gt;&lt;Descriptor Staticness="Instance" AccessRightKinds="Private" Description="Instance fields (private)"&gt;&lt;ElementKinds&gt;&lt;Kind Name="FIELD" /&gt;&lt;Kind Name="READONLY_FIELD" /&gt;&lt;/ElementKinds&gt;&lt;/Descriptor&gt;&lt;Policy Inspect="True" WarnAboutPrefixesAndSuffixes="False" Prefix="" Suffix="" Style="AaBb" /&gt;&lt;/Policy&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=f9fce829_002De6f4_002D4cb2_002D80f1_002D5497c44f51df/@EntryIndexedValue">&lt;Policy&gt;&lt;Descriptor Staticness="Static" AccessRightKinds="Private" Description="Static fields (private)"&gt;&lt;ElementKinds&gt;&lt;Kind Name="FIELD" /&gt;&lt;/ElementKinds&gt;&lt;/Descriptor&gt;&lt;Policy Inspect="True" WarnAboutPrefixesAndSuffixes="False" Prefix="" Suffix="" Style="AaBb" /&gt;&lt;/Policy&gt;</s:String>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpAttributeForSingleLineMethodUpgrade/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
Expand All @@ -25,4 +27,5 @@
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAddAccessorOwnerDeclarationBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002ECSharpPlaceAttributeOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateThisQualifierSettings/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateThisQualifierSettings/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EPredefinedNamingRulesToUserRulesUpgrade/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>