This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<CopyAddinFiles>true</CopyAddinFiles> | |
</PropertyGroup> | |
<PropertyGroup> | |
<AddinDestinationFolder>$(AppData)\Autodesk\Inventor $(InventorVersion)\Addins\</AddinDestinationFolder> | |
</PropertyGroup> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<CopyAddinFiles>true</CopyAddinFiles> | |
</PropertyGroup> | |
<PropertyGroup> | |
<AddinDestinationFolder>$(AppData)\Autodesk\Revit\Addins\$(RevitVersion)\</AddinDestinationFolder> | |
</PropertyGroup> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<CopyBundleFiles>true</CopyBundleFiles> | |
</PropertyGroup> | |
<PropertyGroup> | |
<BundleDestinationFolder>$(AppData)\Autodesk\ApplicationPlugins\$(MSBuildProjectName).bundle</BundleDestinationFolder> | |
</PropertyGroup> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Autodesk.AutoCAD.ApplicationServices.Core; | |
using Autodesk.AutoCAD.Ribbon; | |
using Autodesk.AutoCAD.Runtime; | |
using Autodesk.Windows; | |
using System; | |
namespace ricaun.AutoCAD.UI | |
{ | |
/// <summary> | |
/// Abstract base class for implementing an AutoCAD Extension Application. |
OlderNewer