Skip to content

Commit 4b79edb

Browse files
update readme: uninstall vsix
1 parent d51e8cb commit 4b79edb

File tree

1 file changed

+21
-12
lines changed

1 file changed

+21
-12
lines changed

README.md

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# AutoCAD .NET Wizards
22

3-
A modern version of wizards supporting .NET core projects, this uses VSIX technology to install VS Template on Visual Studio.
3+
- Modern wizards for .NET Core projects
4+
5+
- This tool uses VSIX technology to install a VS Template on Visual Studio.
6+
7+
- All command-line instructions should run on the[ Visual Studio Developer Command Prompt.]([Command-line shells & prompt for developers - Visual Studio (Windows) | Microsoft Learn](https://learn.microsoft.com/en-us/visualstudio/ide/reference/command-prompt-powershell?view=vs-2022))
48

59
## Steps To Build
610

@@ -42,14 +46,9 @@ msbuild PluginVsix\PluginVsix.csproj /t:build /p:Configuration=Release;Platform=
4246
- **To add the ObjectARX SDK or Civil SDK from a local file disk, edit the project file (.csproj).**
4347
- Add `<AssemblySearchPaths>D:\Arx2025\inc\;$(AssemblySearchPaths)</AssemblySearchPaths>`.
4448

45-
46-
4749
- Select the project from solution explorer and right click.
4850

49-
![EdiProjectFile](https://github.com/ADN-DevTech/AutoCAD-Net-Wizards/assets/6602398/77fc0b17-f914-4d36-8f53-a6b788bab670)
50-
51-
52-
51+
![EdiProjectFile](https://github.com/ADN-DevTech/AutoCAD-Net-Wizards/assets/6602398/77fc0b17-f914-4d36-8f53-a6b788bab670)
5352

5453
- A typical .NET plugin project to accomodate AutoCAD, ACA, C3D etc.
5554

@@ -64,13 +63,13 @@ msbuild PluginVsix\PluginVsix.csproj /t:build /p:Configuration=Release;Platform=
6463
</PropertyGroup>
6564
<PropertyGroup>
6665
<!--Edit ArxSdk to local ObjectARX Path-->
67-
<ArxSdk>D:\ArxSDKs\arx2025</ArxSdk>
66+
<ArxSdk>D:\ArxSDKs\arx2025</ArxSdk>
6867
<!--Edit AcadDir to AutoCAD 2025 Install path-->
6968
<AcadDir>D:\ACAD\venn\AutoCAD 2025</AcadDir>
7069
<ArxMgdPath>$(AcadDir)</ArxMgdPath>
7170
<OMFMgdPath>$(AcadDir)\ACA\</OMFMgdPath>
7271
<AeccMgdPath>$(AcadDir)\C3D\</AeccMgdPath>
73-
<AssemblySearchPaths>$(ArxSdk)\inc\;$(OMFMgdPath);$(AeccMgdPath);$(AssemblySearchPaths)</AssemblySearchPaths>
72+
<AssemblySearchPaths>$(ArxSdk)\inc\;$(OMFMgdPath);$(AeccMgdPath);$(AssemblySearchPaths)</AssemblySearchPaths>
7473
</PropertyGroup>
7574
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
7675
<OutputPath>bin\x64\Debug\</OutputPath>
@@ -119,7 +118,7 @@ msbuild PluginVsix\PluginVsix.csproj /t:build /p:Configuration=Release;Platform=
119118
<Private>False</Private>
120119
</Reference>
121120
<!--Add any other references here -->
122-
121+
123122
</ItemGroup>
124123
</Project>
125124
```
@@ -150,8 +149,18 @@ msbuild PluginVsix\PluginVsix.csproj /t:build /p:Configuration=Release;Platform=
150149
}
151150
```
152151

153-
### Written By
152+
### Uninstall Plugin VSIX
154153

155-
- Madhukar Moogala , Autodesk Platform Services (@galakar)
154+
- Through CLI
155+
156+
```bash
157+
vsixinstaller /u:AutoCAD2025_07DA9910-9E94-471B-BD32-565D05D4D857
158+
```
159+
160+
- Through UI
156161

157162

163+
164+
### Written By
165+
166+
- Madhukar Moogala , Autodesk Platform Services (@galakar)

0 commit comments

Comments
 (0)