Skip to content

Commit 7ae5aef

Browse files
author
李锶厅(lisiting01)
committed
Change to sdk reference
1 parent 5e21aed commit 7ae5aef

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+96
-2204
lines changed

SampleCommandSet/Commands/Access/GetAvailableFamilyTypesCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using Autodesk.Revit.UI;
22
using Newtonsoft.Json.Linq;
3-
using revit_mcp_plugin.API.Base;
3+
using revit_mcp_sdk.API.Base;
44
using System;
55
using System.Collections.Generic;
66

7-
namespace SampleCommandSet.Access
7+
namespace SampleCommandSet.Commands.Access
88
{
99
/// <summary>
1010
/// 获取当前项目中可用族类型的命令

SampleCommandSet/Commands/Access/GetAvailableFamilyTypesEventHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
using Autodesk.Revit.DB;
22
using Autodesk.Revit.UI;
3-
using revit_mcp_plugin.API.Interfaces;
3+
using revit_mcp_sdk.API.Interfaces;
44
using SampleCommandSet.Extensions;
55
using SampleCommandSet.Models;
66
using System;
77
using System.Collections.Generic;
88
using System.Linq;
99
using System.Threading;
1010

11-
namespace SampleCommandSet.Access
11+
namespace SampleCommandSet.Commands.Access
1212
{
1313
public class GetAvailableFamilyTypesEventHandler : IExternalEventHandler, IWaitableExternalEventHandler
1414
{

SampleCommandSet/Commands/Access/GetCurrentViewElementsCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using Autodesk.Revit.UI;
22
using Newtonsoft.Json.Linq;
3-
using revit_mcp_plugin.API.Base;
3+
using revit_mcp_sdk.API.Base;
44
using System;
55
using System.Collections.Generic;
66

7-
namespace SampleCommandSet.Access
7+
namespace SampleCommandSet.Commands.Access
88
{
99
/// <summary>
1010
/// 获取当前视图元素的命令

SampleCommandSet/Commands/Access/GetCurrentViewElementsEventHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
using System.Linq;
66
using System.Threading;
77
using SampleCommandSet.Extensions;
8-
using revit_mcp_plugin.API.Interfaces;
8+
using revit_mcp_sdk.API.Interfaces;
99

10-
namespace SampleCommandSet.Access
10+
namespace SampleCommandSet.Commands.Access
1111
{
1212
/// <summary>
1313
/// 获取当前视图元素的事件处理器

SampleCommandSet/Commands/Access/GetCurrentViewInfoCommand.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
using Autodesk.Revit.UI;
22
using Newtonsoft.Json.Linq;
3-
using revit_mcp_plugin.API.Base;
4-
using revit_mcp_plugin.Models;
3+
using revit_mcp_sdk.API.Base;
54
using System;
65

7-
namespace SampleCommandSet.Access
6+
namespace SampleCommandSet.Commands.Access
87
{
98
public class GetCurrentViewInfoCommand : ExternalEventCommandBase
109
{

SampleCommandSet/Commands/Access/GetCurrentViewInfoEventHandler.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using Autodesk.Revit.UI;
2-
using revit_mcp_plugin.API.Interfaces;
3-
using revit_mcp_plugin.Models;
2+
using revit_mcp_sdk.API.Interfaces;
43
using System;
54
using System.Threading;
65
using SampleCommandSet.Extensions;
6+
using SampleCommandSet.Models;
77

8-
namespace SampleCommandSet.Access
8+
namespace SampleCommandSet.Commands.Access
99
{
1010
public class GetCurrentViewInfoEventHandler: IExternalEventHandler, IWaitableExternalEventHandler
1111
{

SampleCommandSet/Commands/Access/GetSelectedElementsCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Autodesk.Revit.UI;
22
using Newtonsoft.Json.Linq;
3-
using revit_mcp_plugin.API.Base;
3+
using revit_mcp_sdk.API.Base;
44
using System;
55

6-
namespace SampleCommandSet.Access
6+
namespace SampleCommandSet.Commands.Access
77
{
88
/// <summary>
99
/// 获取当前选中元素的命令

SampleCommandSet/Commands/Access/GetSelectedElementsEventHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
using Autodesk.Revit.DB;
22
using Autodesk.Revit.UI;
3-
using revit_mcp_plugin.API.Interfaces;
3+
using revit_mcp_sdk.API.Interfaces;
44
using System;
55
using System.Collections.Generic;
66
using System.Linq;
77
using System.Threading;
88
using SampleCommandSet.Extensions;
99

10-
namespace SampleCommandSet.Access
10+
namespace SampleCommandSet.Commands.Access
1111
{
1212
public class GetSelectedElementsEventHandler : IExternalEventHandler, IWaitableExternalEventHandler
1313
{

SampleCommandSet/Commands/Create/CreateWallCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Autodesk.Revit.UI;
2-
using revit_mcp_plugin.API.Base;
2+
using revit_mcp_sdk.API.Base;
33
using System;
44
using Newtonsoft.Json.Linq;
55

6-
namespace SampleCommandSet.Create
6+
namespace SampleCommandSet.Commands.Create
77
{
88
/// <summary>
99
/// 创建墙命令

SampleCommandSet/Commands/Create/CreateWallEventHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Autodesk.Revit.DB;
22
using Autodesk.Revit.UI;
3-
using revit_mcp_plugin.API.Interfaces;
3+
using revit_mcp_sdk.API.Interfaces;
44
using SampleCommandSet.Models;
55
using System;
66
using System.Collections.Generic;
@@ -9,7 +9,7 @@
99
using System.Threading;
1010
using System.Threading.Tasks;
1111

12-
namespace SampleCommandSet.Create
12+
namespace SampleCommandSet.Commands.Create
1313
{
1414
/// <summary>
1515
/// 创建墙的外部事件处理器

0 commit comments

Comments
 (0)