mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
Hide provider and server URL for uninstall.
This commit is contained in:
parent
14cddf001e
commit
3393fcd56f
@ -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>
|
||||
@ -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 />
|
||||
|
||||
@ -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();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user