diff options
-rw-r--r-- | win/C#/HandBrakeCS.csproj | 7 | ||||
-rw-r--r-- | win/C#/ToolWindows/TitleSpecificScan.Designer.cs (renamed from win/C#/TitleSpecificScan.Designer.cs) | 2 | ||||
-rw-r--r-- | win/C#/ToolWindows/TitleSpecificScan.cs (renamed from win/C#/TitleSpecificScan.cs) | 2 | ||||
-rw-r--r-- | win/C#/ToolWindows/TitleSpecificScan.resx (renamed from win/C#/TitleSpecificScan.resx) | 0 | ||||
-rw-r--r-- | win/C#/frmMain.cs | 2 |
5 files changed, 8 insertions, 5 deletions
diff --git a/win/C#/HandBrakeCS.csproj b/win/C#/HandBrakeCS.csproj index 52b1db28b..5275cf840 100644 --- a/win/C#/HandBrakeCS.csproj +++ b/win/C#/HandBrakeCS.csproj @@ -282,10 +282,10 @@ <Compile Include="Functions\AppcastReader.cs" />
<Compile Include="Functions\QueryParser.cs" />
<Compile Include="Program.cs" />
- <Compile Include="TitleSpecificScan.cs">
+ <Compile Include="ToolWindows\TitleSpecificScan.cs">
<SubType>Form</SubType>
</Compile>
- <Compile Include="TitleSpecificScan.Designer.cs">
+ <Compile Include="ToolWindows\TitleSpecificScan.Designer.cs">
<DependentUpon>TitleSpecificScan.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="Controls\AudioPanel.resx">
@@ -354,7 +354,7 @@ <DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
- <EmbeddedResource Include="TitleSpecificScan.resx">
+ <EmbeddedResource Include="ToolWindows\TitleSpecificScan.resx">
<DependentUpon>TitleSpecificScan.cs</DependentUpon>
</EmbeddedResource>
<None Include="app.config" />
@@ -475,6 +475,7 @@ <Name>HandBrake.ApplicationServices</Name>
</ProjectReference>
</ItemGroup>
+ <ItemGroup />
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
diff --git a/win/C#/TitleSpecificScan.Designer.cs b/win/C#/ToolWindows/TitleSpecificScan.Designer.cs index 01955c04a..05fb0734c 100644 --- a/win/C#/TitleSpecificScan.Designer.cs +++ b/win/C#/ToolWindows/TitleSpecificScan.Designer.cs @@ -1,4 +1,4 @@ -namespace Handbrake
+namespace Handbrake.ToolWindows
{
partial class TitleSpecificScan
{
diff --git a/win/C#/TitleSpecificScan.cs b/win/C#/ToolWindows/TitleSpecificScan.cs index 57e8f0d0c..6c938342e 100644 --- a/win/C#/TitleSpecificScan.cs +++ b/win/C#/ToolWindows/TitleSpecificScan.cs @@ -3,7 +3,7 @@ Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
-namespace Handbrake
+namespace Handbrake.ToolWindows
{
using System;
using System.Windows.Forms;
diff --git a/win/C#/TitleSpecificScan.resx b/win/C#/ToolWindows/TitleSpecificScan.resx index ff217dc4f..ff217dc4f 100644 --- a/win/C#/TitleSpecificScan.resx +++ b/win/C#/ToolWindows/TitleSpecificScan.resx diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 2489c8e3a..ba06ede79 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -22,6 +22,8 @@ namespace Handbrake using HandBrake.ApplicationServices.Services;
using HandBrake.ApplicationServices.Services.Interfaces;
+ using Handbrake.ToolWindows;
+
using Model;
using Presets;
using Properties;
|