diff --git a/.gitignore b/.gitignore index aabe2e6..77fd30e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ _Resharper* +*.resharper* bin obj diff --git a/CronNET.sln b/CronNET.sln new file mode 100644 index 0000000..6066190 --- /dev/null +++ b/CronNET.sln @@ -0,0 +1,26 @@ + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CronNET", "CronNET\CronNET.csproj", "{F31D7AF3-FDFA-44F1-9C63-305BAF11D002}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CronNETTests", "CronNETTests\CronNETTests.csproj", "{6FCFBDF4-ECB7-4FC2-A376-E962B11D487D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F31D7AF3-FDFA-44F1-9C63-305BAF11D002}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F31D7AF3-FDFA-44F1-9C63-305BAF11D002}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F31D7AF3-FDFA-44F1-9C63-305BAF11D002}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F31D7AF3-FDFA-44F1-9C63-305BAF11D002}.Release|Any CPU.Build.0 = Release|Any CPU + {6FCFBDF4-ECB7-4FC2-A376-E962B11D487D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6FCFBDF4-ECB7-4FC2-A376-E962B11D487D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6FCFBDF4-ECB7-4FC2-A376-E962B11D487D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6FCFBDF4-ECB7-4FC2-A376-E962B11D487D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/CronNET.suo b/CronNET.suo new file mode 100644 index 0000000..62e9cad Binary files /dev/null and b/CronNET.suo differ diff --git a/CronNET/CronDaemon.cs b/CronNET/CronDaemon.cs index 0863448..93cd632 100644 --- a/CronNET/CronDaemon.cs +++ b/CronNET/CronDaemon.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; using System.Timers; -namespace Cron +namespace CronNET { public class CronDaemon { diff --git a/CronNET/Cron.csproj b/CronNET/CronNET.csproj similarity index 100% rename from CronNET/Cron.csproj rename to CronNET/CronNET.csproj diff --git a/CronNETTests/CronTests.csproj b/CronNETTests/CronNETTests.csproj similarity index 93% rename from CronNETTests/CronTests.csproj rename to CronNETTests/CronNETTests.csproj index 2b3490d..b35342a 100644 --- a/CronNETTests/CronTests.csproj +++ b/CronNETTests/CronNETTests.csproj @@ -38,9 +38,9 @@ - + {F31D7AF3-FDFA-44F1-9C63-305BAF11D002} - Cron + CronNET diff --git a/CronNETTests/CronScheduleTests.cs b/CronNETTests/CronScheduleTests.cs index 2ca0184..8cfad09 100644 --- a/CronNETTests/CronScheduleTests.cs +++ b/CronNETTests/CronScheduleTests.cs @@ -1,6 +1,6 @@ using System; using System.Collections.Generic; -using Cron; +using CronNET; using MbUnit.Framework; namespace CronTests