eXpandFramework / eXpand

DevExpress XAF (eXpressApp) extension framework. 𝗹𝗶𝗻𝗸𝗲𝗱𝗶𝗻.𝗲𝘅𝗽𝗮𝗻𝗱𝗳𝗿𝗮𝗺𝗲𝘄𝗼𝗿𝗸.𝗰𝗼𝗺, 𝘆𝗼𝘂𝘁𝘂𝗯𝗲.𝗲𝘅𝗽𝗮𝗻𝗱𝗳𝗿𝗮𝗺𝗲𝘄𝗼𝗿𝗸.𝗰𝗼𝗺 and 𝘁𝘄𝗶𝘁𝘁𝗲𝗿 @𝗲𝘅𝗽𝗮𝗻𝗱𝗳𝗿𝗮𝗺𝗲𝘄𝗼𝗿𝗸 and or simply 𝗦𝘁𝗮𝗿/𝘄𝗮𝘁𝗰𝗵 this repository and get notified from 𝗚𝗶𝘁𝗛𝘂𝗯
http://expand.expandframework.com
Microsoft Public License
220 stars 114 forks source link

Uninstall VSIX #621

Closed guitelnx closed 4 years ago

guitelnx commented 4 years ago

How do you uninstall VSIX? Since I installed it, the visual studio is closed when compiling

guitelnx commented 4 years ago

ready OK

apobekiaris commented 4 years ago

it probably closes because of is not elevated, run it as admin

if u cannnot uninstall it through VS/Extensions/Manage menu then u can force remove it like

 "Local", "Roaming" | ForEach-Object {
            Get-ChildItem "$env:USERPROFILE\AppData\$_\Microsoft\VisualStudio" Xpand.VSIX.pkgdef -Recurse | ForEach-Object {
                $directory = [System.IO.Path]::GetFullPath("$($_.DirectoryName)")
                Write-Host "Found in $directory" -f Green
                Get-ChildItem $directory -Recurse | Remove-Item -Force -Recurse -ErrorAction SilentlyContinue
            }
        }

Note: That any module that depends on the ModelMapper package requires the VSIX installed

expand commented 4 years ago

Closing issue for age. Feel free to reopen it at any time.

.Thank you for your contribution.