-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added support for IIS remote server management
- Loading branch information
zoroz
committed
Jul 21, 2023
1 parent
e1a1726
commit 520a931
Showing
9 changed files
with
125 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 33 additions & 5 deletions
38
src/FlubuCore/Tasks/Iis/Interfaces/ICreateWebApplicationTask.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,33 @@ | ||
namespace FlubuCore.Tasks.Iis.Interfaces{ public interface ICreateWebApplicationTask : ITaskOfT<int, ICreateWebApplicationTask> { ICreateWebApplicationTask LocalPath(string localPath); /// <summary> | ||
/// Application Name. | ||
/// </summary> | ||
/// <param name="applicationName"></param> | ||
/// <returns></returns> ICreateWebApplicationTask ApplicationName(string applicationName); /// <summary> /// Name of the application pool application will be controoler by. /// </summary> ICreateWebApplicationTask ApplicationPoolName(string applicationPoolName); ICreateWebApplicationTask ParentVirtualDirectoryName(string parentVirualDirectoryName); /// <summary> /// Web site name web application will be added to. /// </summary> ICreateWebApplicationTask WebsiteName(string websiteName); /// <summary> /// Mime types to be added. /// </summary> ICreateWebApplicationTask AddMimeType(params MimeType[] mimeTypes); }} | ||
namespace FlubuCore.Tasks.Iis.Interfaces | ||
{ | ||
public interface ICreateWebApplicationTask : ITaskOfT<int, ICreateWebApplicationTask> | ||
{ | ||
ICreateWebApplicationTask LocalPath(string localPath); | ||
|
||
/// <summary> | ||
/// Application Name. | ||
/// </summary> | ||
/// <param name="applicationName"></param> | ||
/// <returns></returns> | ||
ICreateWebApplicationTask ApplicationName(string applicationName); | ||
|
||
/// <summary> | ||
/// Name of the application pool application will be controoler by. | ||
/// </summary> | ||
ICreateWebApplicationTask ApplicationPoolName(string applicationPoolName); | ||
|
||
ICreateWebApplicationTask ParentVirtualDirectoryName(string parentVirualDirectoryName); | ||
|
||
/// <summary> | ||
/// Web site name web application will be added to. | ||
/// </summary> | ||
ICreateWebApplicationTask WebsiteName(string websiteName); | ||
|
||
/// <summary> | ||
/// Mime types to be added. | ||
/// </summary> | ||
ICreateWebApplicationTask AddMimeType(params MimeType[] mimeTypes); | ||
|
||
ICreateWebApplicationTask ForServer(string serverName); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters