diff options
-rw-r--r-- | win/C#/Installer/Installer.nsi | 4 | ||||
-rw-r--r-- | win/C#/Installer/MakeNightly.nsi.tmpl | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/win/C#/Installer/Installer.nsi b/win/C#/Installer/Installer.nsi index 48b8c4a3e..1b8320ef5 100644 --- a/win/C#/Installer/Installer.nsi +++ b/win/C#/Installer/Installer.nsi @@ -145,7 +145,8 @@ Section "Handbrake" SEC01 File "Castle.DynamicProxy2.dll"
File "Castle.MicroKernel.dll"
File "Castle.Windsor.dll"
-
+ File "Microsoft.Practices.ServiceLocation.dll"
+
SetOutPath "$INSTDIR\doc"
SetOverwrite ifnewer
File "doc\AUTHORS"
@@ -203,6 +204,7 @@ Section Uninstall Delete "$INSTDIR\Castle.DynamicProxy2.dll"
Delete "$INSTDIR\Castle.MicroKernel.dll"
Delete "$INSTDIR\Castle.Windsor.dll"
+ Delete "$INSTDIR\Microsoft.Practices.ServiceLocation.dll"
Delete "$INSTDIR\doc\AUTHORS"
Delete "$INSTDIR\doc\COPYING"
diff --git a/win/C#/Installer/MakeNightly.nsi.tmpl b/win/C#/Installer/MakeNightly.nsi.tmpl index 9aceb637d..ef9f6666f 100644 --- a/win/C#/Installer/MakeNightly.nsi.tmpl +++ b/win/C#/Installer/MakeNightly.nsi.tmpl @@ -143,6 +143,7 @@ Section "Handbrake" SEC01 File "Castle.DynamicProxy2.dll"
File "Castle.MicroKernel.dll"
File "Castle.Windsor.dll"
+ File "Microsoft.Practices.ServiceLocation.dll"
; Copy the standard doc set into the doc folder
SetOutPath "$INSTDIR\doc"
@@ -203,6 +204,7 @@ Section Uninstall Delete "$INSTDIR\Castle.DynamicProxy2.dll"
Delete "$INSTDIR\Castle.MicroKernel.dll"
Delete "$INSTDIR\Castle.Windsor.dll"
+ Delete "$INSTDIR\Microsoft.Practices.ServiceLocation.dll"
Delete "$INSTDIR\doc\AUTHORS"
Delete "$INSTDIR\doc\COPYING"
|