Skip to content

Commit

Permalink
Merged tools project to main project
Browse files Browse the repository at this point in the history
  • Loading branch information
hajduakos committed Jun 12, 2017
1 parent edc0390 commit 38ee04e
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 144 deletions.
6 changes: 0 additions & 6 deletions PhotoLapse.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30501.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PhotoLapseTools", "PhotolapseTools\PhotoLapseTools.csproj", "{E0CE809C-C028-46DE-95D0-B03A0FFE3465}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PhotoLapse", "PhotoLapse\PhotoLapse.csproj", "{3ABD00F7-E043-46D4-A542-EF826BC5A24A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PhotoLapseTests", "PhotoLapseTests\PhotoLapseTests.csproj", "{BFED9CE4-E519-4B37-BF7B-B6B4F0A9294C}"
Expand All @@ -15,10 +13,6 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E0CE809C-C028-46DE-95D0-B03A0FFE3465}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E0CE809C-C028-46DE-95D0-B03A0FFE3465}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E0CE809C-C028-46DE-95D0-B03A0FFE3465}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E0CE809C-C028-46DE-95D0-B03A0FFE3465}.Release|Any CPU.Build.0 = Release|Any CPU
{3ABD00F7-E043-46D4-A542-EF826BC5A24A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3ABD00F7-E043-46D4-A542-EF826BC5A24A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3ABD00F7-E043-46D4-A542-EF826BC5A24A}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Drawing.Imaging;
using System.Linq;

namespace PhotoLapseTools.Creators
namespace PhotoLapse.Creators
{
/// <summary>
/// Gradient PhotoLapse creator
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

using PhotoLapseTools.Reporters;
using PhotoLapse.Reporters;
using System.Collections.Generic;
using System.Drawing;
namespace PhotoLapseTools.Creators

namespace PhotoLapse.Creators
{
/// <summary>
/// PhotoLapse creator interface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Drawing.Imaging;
using System.Linq;

namespace PhotoLapseTools.Creators
namespace PhotoLapse.Creators
{
/// <summary>
/// Stripe PhotoLapse creator
Expand Down
2 changes: 1 addition & 1 deletion PhotoLapse/Model/BgWorkerReporter.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using PhotoLapseTools.Reporters;
using PhotoLapse.Reporters;
using System.ComponentModel;

namespace PhotoLapse
Expand Down
4 changes: 2 additions & 2 deletions PhotoLapse/Model/PhotoLapseManager.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using PhotoLapseTools.Creators;
using PhotoLapseTools.Utils;
using PhotoLapse.Creators;
using PhotoLapse.Utils;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
Expand Down
11 changes: 5 additions & 6 deletions PhotoLapse/PhotoLapse.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="Reporters\IReporter.cs" />
<Compile Include="Utils\PhotoUtils.cs" />
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
Expand All @@ -66,6 +68,9 @@
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="Creators\GradientPhotoLapseCreator .cs" />
<Compile Include="Creators\IPhotoLapseCreator.cs" />
<Compile Include="Creators\StripePhotoLapseCreator.cs" />
<Compile Include="Model\BgWorkerReporter.cs" />
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
Expand Down Expand Up @@ -103,12 +108,6 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PhotolapseTools\PhotoLapseTools.csproj">
<Project>{e0ce809c-c028-46de-95d0-b03a0ffe3465}</Project>
<Name>PhotoLapseTools</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Resource Include="images\cog.png" />
<Resource Include="images\disk.png" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

namespace PhotoLapseTools.Reporters
namespace PhotoLapse.Reporters
{
/// <summary>
/// Reporter interface
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Drawing;
using System.Drawing.Imaging;

namespace PhotoLapseTools.Utils
namespace PhotoLapse.Utils
{
/// <summary>
/// Helper class
Expand Down
2 changes: 1 addition & 1 deletion PhotoLapseTests/PhotoLapseTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.Collections.Generic;
using PhotoLapseTools.Creators;
using PhotoLapse.Creators;
using System.Linq;
using System.Drawing;
using System.Drawing.Imaging;
Expand Down
11 changes: 7 additions & 4 deletions PhotoLapseTests/PhotoLapseTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>PhotoLapseTests</RootNamespace>
<AssemblyName>PhotoLapseTests</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
<IsCodedUITest>False</IsCodedUITest>
<TestProjectType>UnitTest</TestProjectType>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -26,6 +27,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -35,6 +37,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand All @@ -60,9 +63,9 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PhotolapseTools\PhotoLapseTools.csproj">
<Project>{e0ce809c-c028-46de-95d0-b03a0ffe3465}</Project>
<Name>PhotoLapseTools</Name>
<ProjectReference Include="..\PhotoLapse\PhotoLapse.csproj">
<Project>{3abd00f7-e043-46d4-a542-ef826bc5a24a}</Project>
<Name>PhotoLapse</Name>
</ProjectReference>
</ItemGroup>
<Choose>
Expand Down
61 changes: 0 additions & 61 deletions PhotolapseTools/PhotoLapseTools.csproj

This file was deleted.

36 changes: 0 additions & 36 deletions PhotolapseTools/Properties/AssemblyInfo.cs

This file was deleted.

20 changes: 0 additions & 20 deletions PhotolapseTools/Reporters/ConsoleReporter.cs

This file was deleted.

0 comments on commit 38ee04e

Please sign in to comment.