[longomatch] Move all services out of the Services folder.
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch] Move all services out of the Services folder.
- Date: Fri, 17 Apr 2015 16:19:43 +0000 (UTC)
commit 71eb752a9b00a5983402c59becc113e1b691ccd1
Author: Xavi Artigas <xartigas fluendo com>
Date: Thu Apr 9 12:47:12 2015 +0200
Move all services out of the Services folder.
Their right place is in the LongoMatch.Services folder.
LongoMatch.Services/{Services => }/CoreServices.cs | 0
LongoMatch.Services/{Services => }/DataBase.cs | 0
.../{Services => }/DataBaseManager.cs | 0
.../{Services => }/EventsManager.cs | 0
LongoMatch.Services/{Services => }/FileDB.cs | 0
LongoMatch.Services/{Services => }/FileStorage.cs | 0
.../{Services => }/HotKeysManager.cs | 0
LongoMatch.Services/LongoMatch.Services.csproj | 25 +++++++++----------
LongoMatch.Services/Makefile.am | 24 +++++++++---------
.../{Services => }/PlayerController.cs | 0
.../{Services => }/PlaylistManager.cs | 0
.../{Services => }/ProjectOptionsManager.cs | 0
.../{Services => }/ProjectsManager.cs | 0
.../{Services => }/RenderingJobsManager.cs | 0
LongoMatch.Services/{Services => }/SQLiteDB.cs | 0
.../{Services => }/TemplatesService.cs | 0
LongoMatch.Services/{Services => }/ToolsManager.cs | 0
17 files changed, 24 insertions(+), 25 deletions(-)
---
diff --git a/LongoMatch.Services/Services/CoreServices.cs b/LongoMatch.Services/CoreServices.cs
similarity index 100%
rename from LongoMatch.Services/Services/CoreServices.cs
rename to LongoMatch.Services/CoreServices.cs
diff --git a/LongoMatch.Services/Services/DataBase.cs b/LongoMatch.Services/DataBase.cs
similarity index 100%
rename from LongoMatch.Services/Services/DataBase.cs
rename to LongoMatch.Services/DataBase.cs
diff --git a/LongoMatch.Services/Services/DataBaseManager.cs b/LongoMatch.Services/DataBaseManager.cs
similarity index 100%
rename from LongoMatch.Services/Services/DataBaseManager.cs
rename to LongoMatch.Services/DataBaseManager.cs
diff --git a/LongoMatch.Services/Services/EventsManager.cs b/LongoMatch.Services/EventsManager.cs
similarity index 100%
rename from LongoMatch.Services/Services/EventsManager.cs
rename to LongoMatch.Services/EventsManager.cs
diff --git a/LongoMatch.Services/Services/FileDB.cs b/LongoMatch.Services/FileDB.cs
similarity index 100%
rename from LongoMatch.Services/Services/FileDB.cs
rename to LongoMatch.Services/FileDB.cs
diff --git a/LongoMatch.Services/Services/FileStorage.cs b/LongoMatch.Services/FileStorage.cs
similarity index 100%
rename from LongoMatch.Services/Services/FileStorage.cs
rename to LongoMatch.Services/FileStorage.cs
diff --git a/LongoMatch.Services/Services/HotKeysManager.cs b/LongoMatch.Services/HotKeysManager.cs
similarity index 100%
rename from LongoMatch.Services/Services/HotKeysManager.cs
rename to LongoMatch.Services/HotKeysManager.cs
diff --git a/LongoMatch.Services/LongoMatch.Services.csproj b/LongoMatch.Services/LongoMatch.Services.csproj
index 5f100a1..6eacc73 100644
--- a/LongoMatch.Services/LongoMatch.Services.csproj
+++ b/LongoMatch.Services/LongoMatch.Services.csproj
@@ -29,25 +29,24 @@
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
- <Compile Include="Services\TemplatesService.cs" />
- <Compile Include="Services\RenderingJobsManager.cs" />
- <Compile Include="Services\CoreServices.cs" />
- <Compile Include="Services\HotKeysManager.cs" />
- <Compile Include="Services\EventsManager.cs" />
- <Compile Include="Services\PlaylistManager.cs" />
- <Compile Include="Services\ProjectsManager.cs" />
- <Compile Include="Services\DataBaseManager.cs" />
- <Compile Include="Services\ToolsManager.cs" />
- <Compile Include="Services\FileDB.cs" />
- <Compile Include="Services\FileStorage.cs" />
- <Compile Include="Services\PlayerController.cs" />
+ <Compile Include="TemplatesService.cs" />
+ <Compile Include="RenderingJobsManager.cs" />
+ <Compile Include="CoreServices.cs" />
+ <Compile Include="HotKeysManager.cs" />
+ <Compile Include="EventsManager.cs" />
+ <Compile Include="PlaylistManager.cs" />
+ <Compile Include="ProjectsManager.cs" />
+ <Compile Include="DataBaseManager.cs" />
+ <Compile Include="ToolsManager.cs" />
+ <Compile Include="FileDB.cs" />
+ <Compile Include="FileStorage.cs" />
+ <Compile Include="PlayerController.cs" />
<Compile Include="..\AssemblyInfo\AssemblyInfo.cs">
<Link>AssemblyInfo.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<Folder Include="..\" />
- <Folder Include="Services\" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
diff --git a/LongoMatch.Services/Makefile.am b/LongoMatch.Services/Makefile.am
index c1931d8..8cff18b 100644
--- a/LongoMatch.Services/Makefile.am
+++ b/LongoMatch.Services/Makefile.am
@@ -4,17 +4,17 @@ TARGET = library
LINK = $(REF_DEP_LONGOMATCH_SERVICES)
SOURCES = ../AssemblyInfo/AssemblyInfo.cs \
- Services/CoreServices.cs \
- Services/DataBaseManager.cs \
- Services/EventsManager.cs \
- Services/FileDB.cs \
- Services/FileStorage.cs \
- Services/HotKeysManager.cs \
- Services/PlayerController.cs \
- Services/PlaylistManager.cs \
- Services/ProjectsManager.cs \
- Services/RenderingJobsManager.cs \
- Services/TemplatesService.cs \
- Services/ToolsManager.cs
+ CoreServices.cs \
+ DataBaseManager.cs \
+ EventsManager.cs \
+ FileDB.cs \
+ FileStorage.cs \
+ HotKeysManager.cs \
+ PlayerController.cs \
+ PlaylistManager.cs \
+ ProjectsManager.cs \
+ RenderingJobsManager.cs \
+ TemplatesService.cs \
+ ToolsManager.cs
include $(top_srcdir)/build/build.mk
diff --git a/LongoMatch.Services/Services/PlayerController.cs b/LongoMatch.Services/PlayerController.cs
similarity index 100%
rename from LongoMatch.Services/Services/PlayerController.cs
rename to LongoMatch.Services/PlayerController.cs
diff --git a/LongoMatch.Services/Services/PlaylistManager.cs b/LongoMatch.Services/PlaylistManager.cs
similarity index 100%
rename from LongoMatch.Services/Services/PlaylistManager.cs
rename to LongoMatch.Services/PlaylistManager.cs
diff --git a/LongoMatch.Services/Services/ProjectOptionsManager.cs
b/LongoMatch.Services/ProjectOptionsManager.cs
similarity index 100%
rename from LongoMatch.Services/Services/ProjectOptionsManager.cs
rename to LongoMatch.Services/ProjectOptionsManager.cs
diff --git a/LongoMatch.Services/Services/ProjectsManager.cs b/LongoMatch.Services/ProjectsManager.cs
similarity index 100%
rename from LongoMatch.Services/Services/ProjectsManager.cs
rename to LongoMatch.Services/ProjectsManager.cs
diff --git a/LongoMatch.Services/Services/RenderingJobsManager.cs
b/LongoMatch.Services/RenderingJobsManager.cs
similarity index 100%
rename from LongoMatch.Services/Services/RenderingJobsManager.cs
rename to LongoMatch.Services/RenderingJobsManager.cs
diff --git a/LongoMatch.Services/Services/SQLiteDB.cs b/LongoMatch.Services/SQLiteDB.cs
similarity index 100%
rename from LongoMatch.Services/Services/SQLiteDB.cs
rename to LongoMatch.Services/SQLiteDB.cs
diff --git a/LongoMatch.Services/Services/TemplatesService.cs b/LongoMatch.Services/TemplatesService.cs
similarity index 100%
rename from LongoMatch.Services/Services/TemplatesService.cs
rename to LongoMatch.Services/TemplatesService.cs
diff --git a/LongoMatch.Services/Services/ToolsManager.cs b/LongoMatch.Services/ToolsManager.cs
similarity index 100%
rename from LongoMatch.Services/Services/ToolsManager.cs
rename to LongoMatch.Services/ToolsManager.cs
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]