Próbuję użyć powłoki powershell w konsoli programu Package Manager, aby skrypty usunąć projekt z rozwiązania i mam zaskakująco ciężko.Usuwanie projektu z rozwiązania za pomocą konsoli menedżera pakietów
mogę łatwo dodać projektu przez
PM> $dte.Solution.AddFromFile("C:\Dev\Project1.csproj")
Teraz chcę być usunięcie projektu i nie może dostać coś do pracy.
Próbowałem wielu rzeczy, w tym:
PM> $project1 = Get-Project "Project1Name"
PM> $dte.Solution.Remove($project1)
>
Cannot convert argument "0", with value: "System.__ComObject", for "Remove" to
type "EnvDTE.Project": "Cannot convert the "System.__ComObject" value of type
"System.__ComObject#{866311e6-c887-4143-9833-645f5b93f6f1}" to type
"EnvDTE.Project"."
PM> $project = Get-Interface $project1 ([EnvDTE.Project])
PM> $dte.Solution.Remove($project)
Cannot convert argument "0", with value: "System.__ComObject", for "Remove" to
type "EnvDTE.Project": "Cannot convert the "System.__ComObject" value of type
"NuGetConsole.Host.PowerShell.Implementation.PSTypeWrapper" to type
"EnvDTE.Project"."
PM> $project = [EnvDTE.Project] ($project1)
Cannot convert the "System.__ComObject" value of type
"System.__ComObject#{866311e6-c887-4143-9833-645f5b93f6f1}" to type
"EnvDTE.Project".
PM> $solution2 = Get-Interface $dte.Solution ([EnvDTE80.Solution2])
PM> $solution2.Remove($project1)
Exception calling "Remove" with "1" argument(s): "Exception calling
"InvokeMethod" with "3" argument(s): "Object must implement IConvertible.""
PM> $dte2 = Get-Interface $dte ([EnvDTE80.DTE2])
PM> $dte2.Solution.Remove($project)
Method invocation failed because [System.Object[]] doesn't contain a method
named 'Remove'.
Próbowałem innych kombinacji, ale ja wyraźnie przędzenia moich kół. Doceniam wszelkie sugestie.
Czy to działa? Mam podobną potrzebę. –