You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

install.ps1 237B

123456789
  1. param($installPath, $toolsPath, $package, $project)
  2. If ($project.Type -ne "VB.NET")
  3. {
  4. $project.ProjectItems.Item("Program.vb").Delete()
  5. }
  6. If ($project.Type -ne "C#")
  7. {
  8. $project.ProjectItems.Item("Program.cs").Delete()
  9. }