I need to know what are those parameters: $installPath, $toolsPath, $package, $project
Example for EntityFramework NuGet package:
install.ps1
param($installPath, $toolsPath, $package, $project)
Initialize-EFConfiguration $project
Add-EFProvider $project 'System.Data.SqlClient' 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer'
Write-Host
Write-Host "Type 'get-help EntityFramework' to see all available Entity Framework commands."
For what reason are they used for ?
Is there some way to debugging this script ?
Get-Help EntityFramework -Fullto show you everything you need to know.Write-Host "$installPath, $toolsPath, $package, $project"to the install.ps1 script, install it and check the output - then you see all the actual parameters...