diff options
author | sr55 <[email protected]> | 2010-08-29 20:41:07 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-08-29 20:41:07 +0000 |
commit | 466ea9a1a522e58dc972ffbba9deba3f615394a2 (patch) | |
tree | cf7b1ab9b3144d05b47c44967273c3f19cf74dd8 /win/C#/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj | |
parent | c9973fa6ab5ed42b2219faa9a0c12e06ef74139e (diff) |
WinGui:
- Created an error service, renamed the frmExceptionWindow to ExceptionWindow and removed it's duplicate from the main project. It's all in the AppServices library.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3503 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj')
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj b/win/C#/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj index f4286cf5a..fb2202e62 100644 --- a/win/C#/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj +++ b/win/C#/HandBrake.ApplicationServices/HandBrake.ApplicationServices.csproj @@ -105,11 +105,19 @@ <DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Services\Encode.cs" />
+ <Compile Include="Services\ErrorService.cs" />
<Compile Include="Services\Interfaces\IEncode.cs" />
+ <Compile Include="Services\Interfaces\IErrorService.cs" />
<Compile Include="Services\Interfaces\IQueue.cs" />
<Compile Include="Services\Interfaces\IScan.cs" />
<Compile Include="Services\Queue.cs" />
<Compile Include="Services\Scan.cs" />
+ <Compile Include="Views\ExceptionWindow.cs">
+ <SubType>Form</SubType>
+ </Compile>
+ <Compile Include="Views\ExceptionWindow.designer.cs">
+ <DependentUpon>ExceptionWindow.cs</DependentUpon>
+ </Compile>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
@@ -124,6 +132,9 @@ <LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
+ <EmbeddedResource Include="Views\ExceptionWindow.resx">
+ <DependentUpon>ExceptionWindow.cs</DependentUpon>
+ </EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\logo64.png" />
|