Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Updated folder / namespace names.
Browse files Browse the repository at this point in the history
DIsabled "prefer 32 bit"
  • Loading branch information
JMPZ11 committed Aug 31, 2018
1 parent ae1a9b1 commit 2ff8044
Show file tree
Hide file tree
Showing 17 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion RestoreCommandPrompt.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2003
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestoreCommandPrompt", "RestoreCmd\RestoreCommandPrompt.csproj", "{042FB027-164B-4009-9C42-98E0FFB2D05B}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestoreCommandPrompt", "RestoreCommandPrompt\RestoreCommandPrompt.csproj", "{042FB027-164B-4009-9C42-98E0FFB2D05B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions RestoreCmd/App.xaml → RestoreCommandPrompt/App.xaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Application x:Class="RestoreCmd.App"
<Application x:Class="RestoreCommandPrompt.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:RestoreCmd"
xmlns:local="clr-namespace:RestoreCommandPrompt"
StartupUri="MainWindow.xaml">
<Application.Resources>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Threading.Tasks;
using System.Windows;

namespace RestoreCmd
namespace RestoreCommandPrompt
{
/// <summary>
/// Interaction logic for App.xaml
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Window x:Class="RestoreCmd.MainWindow"
<Window x:Class="RestoreCommandPrompt.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:RestoreCmd"
xmlns:local="clr-namespace:RestoreCommandPrompt"
mc:Ignorable="d"
Title="Windows 10 Restore Command Prompt" Height="135.957" Width="373.937" ResizeMode="NoResize">
Title="Windows 10 Restore Command Prompt" Height="135.457" Width="371.437" ResizeMode="NoResize">
<Grid>
<CheckBox x:Name="chkFolderStatus" Content="Folder Context Menu" HorizontalAlignment="Left" Margin="13,15,0,0" VerticalAlignment="Top" IsEnabled="False"/>
<CheckBox x:Name="chkFolderBackStatus" Content="Folder Background Context Menu" HorizontalAlignment="Left" Margin="13,45,0,0" VerticalAlignment="Top" IsEnabled="False"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace RestoreCmd
namespace RestoreCommandPrompt
{
/// <summary>
/// Interaction logic for MainWindow.xaml
Expand Down Expand Up @@ -57,6 +57,8 @@ void UpdateStatus()
btnFolderBackDisable.IsEnabled = false;
}



if (chkExplorerStatus.IsChecked.GetValueOrDefault())
{
btnExplorerEnable.IsEnabled = false;
Expand Down Expand Up @@ -106,5 +108,6 @@ private void btnExplorerDisable_Click(object sender, RoutedEventArgs e)
RestoreTool.RestorePowershellRibbon();
UpdateStatus();
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using System.Threading.Tasks;

namespace RestoreCmd
namespace RestoreCommandPrompt
{
public static class RegistryUtilities
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Text;
using System.Threading.Tasks;

namespace RestoreCmd
namespace RestoreCommandPrompt
{
static class RestoreTool
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using System.Threading.Tasks;

namespace RestoreCmd
namespace RestoreCommandPrompt
{
class TokenManipulator
{
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 2ff8044

Please sign in to comment.