Subversion Repository Public Repository

ChrisCompleteCodeTrunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
param($installPath, $toolsPath, $package, $project)

. (Join-Path $toolsPath common.ps1)

# Determine the file paths
$projectIntelliSenseFilePath = Join-Path $projectScriptsFolderPath $intelliSenseFileName
$origIntelliSenseFilePath = Join-Path $toolsPath $intelliSenseFileName

if (Test-Path $projectIntelliSenseFilePath) {
    if ((Get-Checksum $projectIntelliSenseFilePath) -eq (Get-Checksum $origIntelliSenseFilePath)) {
        # The intellisense file in the project matches the file in the tools folder, delete it
        
        if ($scriptsFolderProjectItem -eq $null) {
            # No Scripts folder
            exit
        }

        try {        
            # Get the project item for the intellisense file
            $intelliSenseFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item($intelliSenseFileName)
        }
        catch {
            # The item wasn't found
            exit
        }

        # Delete the project item
        Delete-ProjectItem $intelliSenseFileProjectItem
    }
    else {
        $projectScriptsFolderLeaf = Split-Path $projectScriptsFolderPath -Leaf
        Write-Host "Skipping '$projectScriptsFolderLeaf\$intelliSenseFileName' because it was modified." -ForegroundColor Magenta
    }
}
else {
    # The intellisense file was not found in project
    Write-Host "The intellisense file was not found in project at path $projectIntelliSenseFilePath"
}

# Update the _references.js file
Remove-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx

Commits for ChrisCompleteCodeTrunk/AMSWeblinkProvider/packages/jQuery.1.10.2/Tools/uninstall.ps1

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000