Skip to content

Commit

Permalink
Consolidate Options into Topshelf to be use by any configurator.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulomorgado authored and phatboyg committed Sep 19, 2018
1 parent 21887aa commit e6045ee
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<Compile Remove="Options\DependencyOption.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Topshelf\Topshelf.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Topshelf.Options
/// Represents an option to set a service dependency.
/// </summary>
/// <seealso cref="Option" />
internal class DependencyOption
public class DependencyOption
: Option
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Topshelf.Options
/// Represents an option to set a service start timeout (in seconds).
/// </summary>
/// <seealso cref="Option" />
internal class StartTimeoutOption
public class StartTimeoutOption
: Option
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Topshelf.Options
/// Represents an option to set a service stop timeout (in seconds).
/// </summary>
/// <seealso cref="Option" />
internal class StopTimeoutOption
public class StopTimeoutOption
: Option
{
/// <summary>
Expand Down

0 comments on commit e6045ee

Please sign in to comment.