Metoda IAddInPostDeploymentAction.Execute —
Uruchamia przywróceniu akcja, którą można wykonać kroki instalacji dodatkowych jako ostatni krok w Instalatorze ClickOnce.
Przestrzeń nazw: Microsoft.VisualStudio.Tools.Applications.Deployment
Zestaw: Microsoft.VisualStudio.Tools.Applications.Runtime (w Microsoft.VisualStudio.Tools.Applications.Runtime.dll)
Składnia
'Deklaracja
Sub Execute ( _
args As AddInPostDeploymentActionArgs _
)
void Execute(
AddInPostDeploymentActionArgs args
)
Parametry
- args
Typ: Microsoft.VisualStudio.Tools.Applications.Deployment.AddInPostDeploymentActionArgs
Argumenty akcji przywróceniu, łącznie ze ścieżką Instalatora ClickOnce.
Przykłady
Sub Execute(ByVal args As AddInPostDeploymentActionArgs) Implements IAddInPostDeploymentAction.Execute
Dim dataDirectory As String = "Data\ExcelWorkbook.xlsx"
Dim file As String = "ExcelWorkbook.xlsx"
Dim sourcePath As String = args.AddInPath
Dim deploymentManifestUri As Uri = args.ManifestLocation
Dim destPath As String = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)
Dim sourceFile As String = System.IO.Path.Combine(sourcePath, dataDirectory)
Dim destFile As String = System.IO.Path.Combine(destPath, file)
Select Case args.InstallationStatus
Case AddInInstallationStatus.InitialInstall, AddInInstallationStatus.Update
System.IO.File.Copy(sourceFile, destFile)
ServerDocument.RemoveCustomization(destFile)
ServerDocument.AddCustomization(destFile, deploymentManifestUri)
Exit Select
Case AddInInstallationStatus.Uninstall
If System.IO.File.Exists(destFile) Then
System.IO.File.Delete(destFile)
End If
Exit Select
End Select
End Sub
public void Execute(AddInPostDeploymentActionArgs args)
{
string dataDirectory = @"Data\ExcelWorkbook.xlsx";
string file = @"ExcelWorkbook.xlsx";
string sourcePath = args.AddInPath;
Uri deploymentManifestUri = args.ManifestLocation;
string destPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
string sourceFile = System.IO.Path.Combine(sourcePath, dataDirectory);
string destFile = System.IO.Path.Combine(destPath, file);
switch (args.InstallationStatus)
{
case AddInInstallationStatus.InitialInstall:
case AddInInstallationStatus.Update:
File.Copy(sourceFile, destFile);
ServerDocument.RemoveCustomization(destFile);
ServerDocument.AddCustomization(destFile, deploymentManifestUri);
break;
case AddInInstallationStatus.Uninstall:
if (File.Exists(destFile))
{
File.Delete(destFile);
}
break;
}
}
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Przy użyciu bibliotek z częściowo zaufanego kodu..
Zobacz też
Informacje
IAddInPostDeploymentAction Interfejs
Przestrzeń nazw Microsoft.VisualStudio.Tools.Applications.Deployment