Skip to content

Commit

Permalink
tweet
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremytammik committed Sep 6, 2024
1 parent 7bd266d commit 4988172
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 50 deletions.
50 changes: 25 additions & 25 deletions a/2052_multiversion.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
twitter:
the @AutodeskRevit #RevitAPI #BIM @DynamoBIM
Multi-version @AutodeskRevit #RevitAPI add-in code base, using UIView zoom corners to determine element visibility, GPT LLM to read PDF and emails for fully automated generation of ACC issues #BIM @DynamoBIM https://autode.sk/multiversionrvtaddin
Current and recurring topics from the Revit API discussion forum, an LLM and a cultural colour topic
– Multi-version add-in code base
Expand Down Expand Up @@ -82,30 +82,30 @@ <h4><a name="2"></a> Multi-Version Add-In Code Base</h4>
<li>Edit the project file and put the <code>TargetFramework</code> and the <code>Reference</code> in a condition:</li>
</ul>
<pre><code class="language-xml"> &lt;PropertyGroup Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;TargetFramework&gt;net481&lt;/TargetFramework&gt;
&lt;/PropertyGroup&gt;
&lt;PropertyGroup Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;TargetFramework&gt;net8.0&lt;/TargetFramework&gt;
&lt;/PropertyGroup&gt;

&lt;ItemGroup&gt;
&lt;Reference Include="RevitAPI" Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2024\RevitAPI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPIUI" Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2024\RevitAPIUI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPI" Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2025\RevitAPI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPIUI" Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2025\RevitAPIUI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;/ItemGroup&gt;</code></pre>
&lt;TargetFramework&gt;net481&lt;/TargetFramework&gt;
&lt;/PropertyGroup&gt;
&lt;PropertyGroup Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;TargetFramework&gt;net8.0&lt;/TargetFramework&gt;
&lt;/PropertyGroup&gt;

&lt;ItemGroup&gt;
&lt;Reference Include="RevitAPI" Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2024\RevitAPI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPIUI" Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2024\RevitAPIUI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPI" Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2025\RevitAPI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPIUI" Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2025\RevitAPIUI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;/ItemGroup&gt;</code></pre>

<ul>
<li>Create an App.cs file and implement IExternalApplication</li>
Expand Down
50 changes: 25 additions & 25 deletions a/2052_multiversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
twitter:
the @AutodeskRevit #RevitAPI #BIM @DynamoBIM
Multi-version @AutodeskRevit #RevitAPI add-in code base, using UIView zoom corners to determine element visibility, GPT LLM to read PDF and emails for fully automated generation of ACC issues #BIM @DynamoBIM https://autode.sk/multiversionrvtaddin
Current and recurring topics from the Revit API discussion forum, an LLM and a cultural colour topic
&ndash; Multi-version add-in code base
Expand Down Expand Up @@ -90,30 +90,30 @@ Here is step by step:
- Edit the project file and put the `TargetFramework` and the `Reference` in a condition:

<pre><code class="language-xml"> &lt;PropertyGroup Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;TargetFramework&gt;net481&lt;/TargetFramework&gt;
&lt;/PropertyGroup&gt;
&lt;PropertyGroup Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;TargetFramework&gt;net8.0&lt;/TargetFramework&gt;
&lt;/PropertyGroup&gt;

&lt;ItemGroup&gt;
&lt;Reference Include="RevitAPI" Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2024\RevitAPI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPIUI" Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2024\RevitAPIUI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPI" Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2025\RevitAPI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPIUI" Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2025\RevitAPIUI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;/ItemGroup&gt;</code></pre>
&lt;TargetFramework&gt;net481&lt;/TargetFramework&gt;
&lt;/PropertyGroup&gt;
&lt;PropertyGroup Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;TargetFramework&gt;net8.0&lt;/TargetFramework&gt;
&lt;/PropertyGroup&gt;

&lt;ItemGroup&gt;
&lt;Reference Include="RevitAPI" Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2024\RevitAPI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPIUI" Condition="'$(Configuration)' == '2024Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2024\RevitAPIUI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPI" Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2025\RevitAPI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;Reference Include="RevitAPIUI" Condition="'$(Configuration)' == '2025Debug'"&gt;
&lt;HintPath&gt;..\..\..\..\..\..\..\..\Program Files\Autodesk\Revit 2025\RevitAPIUI.dll&lt;/HintPath&gt;
&lt;Private&gt;False&lt;/Private&gt;
&lt;/Reference&gt;
&lt;/ItemGroup&gt;</code></pre>

- Create an App.cs file and implement IExternalApplication

Expand Down

0 comments on commit 4988172

Please sign in to comment.