Skip to content
This repository has been archived by the owner. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RefactoringEssentials/RefactoringEssentials.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</frameworkAssemblies>
</metadata>
<files>
<file src="RefactoringEssentials.dll" target="tools\analyzers\" />
<file src="RefactoringEssentials.dll" target="analyzers\dotnet\" />
<file src="tools\install.ps1" target="tools\" />
<file src="tools\uninstall.ps1" target="tools\" />
</files>
Expand Down
2 changes: 1 addition & 1 deletion RefactoringEssentials/tools/install.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param($installPath, $toolsPath, $package, $project)

$analyzerPath = join-path $toolsPath "analyzers"
$analyzerPath = join-path (split-Path -path $toolsPath -parent) "analyzers\dotnet"
$analyzerFilePath = join-path $analyzerPath "RefactoringEssentials.dll"

$project.Object.AnalyzerReferences.Add("$analyzerFilePath")
2 changes: 1 addition & 1 deletion RefactoringEssentials/tools/uninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param($installPath, $toolsPath, $package, $project)

$analyzerPath = join-path $toolsPath "analyzers"
$analyzerPath = join-path (split-Path -path $toolsPath -parent) "analyzers\dotnet"
$analyzerFilePath = join-path $analyzerPath "RefactoringEssentials.dll"

$project.Object.AnalyzerReferences.Remove("$analyzerFilePath")