Hide provider and server URL for uninstall.

This commit is contained in:
Jared Goodwin 2020-02-22 18:50:42 -08:00
parent 14cddf001e
commit 3393fcd56f
3 changed files with 5 additions and 3 deletions

View File

@ -145,6 +145,8 @@
<Error Condition="!Exists('..\packages\Costura.Fody.4.1.0\build\Costura.Fody.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Costura.Fody.4.1.0\build\Costura.Fody.props'))" />
</Target>
<PropertyGroup>
<PostBuildEvent>xcopy "$(TargetPath)" "$(SolutionDir)Server\wwwroot\Downloads\" /y /e /i</PostBuildEvent>
<PostBuildEvent>if $(ConfigurationName) == Debug (
xcopy "$(TargetPath)" "$(SolutionDir)Server\wwwroot\Downloads\" /y /e /i
)</PostBuildEvent>
</PropertyGroup>
</Project>

View File

@ -38,7 +38,7 @@
<StackPanel>
<TextBlock Style="{StaticResource SectionHeader}" Text="{Binding HeaderMessage}"></TextBlock>
<Grid Margin="25,5,0,0">
<Grid Margin="25,5,0,0" Visibility="{Binding IsServiceMissing, Converter={StaticResource BooleanToVisibilityConverter}}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition />

View File

@ -181,7 +181,7 @@ namespace Remotely.Agent.Installer.Win.ViewModels
else
{
HeaderMessage = "Uninstall the Remotely service.";
StatusMessage = "Uninstalling the Remotely service will remove all remote acess for the above service provider.";
StatusMessage = "Uninstalling the Remotely service will remove all remote acess to this device.";
}
var installerSettings = ReadInstallerSettings();