-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
handle code quality in DirectoryService.cs
- Loading branch information
Showing
14 changed files
with
143 additions
and
14 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
29 changes: 29 additions & 0 deletions
29
docs/master-commander/DirectoryService.CreateNewDirectory(string,string).md
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#### [MasterCommander](MasterCommander.md 'MasterCommander') | ||
### [MasterCommander.Integrations](MasterCommander.md#MasterCommander.Integrations 'MasterCommander.Integrations').[DirectoryService](DirectoryService.md 'MasterCommander.Integrations.DirectoryService') | ||
|
||
## DirectoryService.CreateNewDirectory(string, string) Method | ||
|
||
Creates a new directory within a specified base directory. | ||
|
||
```csharp | ||
public string CreateNewDirectory(string baseDirectory, string newDirectoryName); | ||
``` | ||
#### Parameters | ||
|
||
<a name='MasterCommander.Integrations.DirectoryService.CreateNewDirectory(string,string).baseDirectory'></a> | ||
|
||
`baseDirectory` [System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String') | ||
|
||
The base directory where the new directory will be created. | ||
|
||
<a name='MasterCommander.Integrations.DirectoryService.CreateNewDirectory(string,string).newDirectoryName'></a> | ||
|
||
`newDirectoryName` [System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String') | ||
|
||
The name of the new directory to create. | ||
|
||
Implements [CreateNewDirectory(string, string)](IDirectoryService.CreateNewDirectory(string,string).md 'MasterCommander.Core.Services.IDirectoryService.CreateNewDirectory(string, string)') | ||
|
||
#### Returns | ||
[System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String') | ||
The path of the newly created directory. |
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
19 changes: 19 additions & 0 deletions
19
docs/master-commander/DirectoryService.SetWorkingDirectory(string).md
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#### [MasterCommander](MasterCommander.md 'MasterCommander') | ||
### [MasterCommander.Integrations](MasterCommander.md#MasterCommander.Integrations 'MasterCommander.Integrations').[DirectoryService](DirectoryService.md 'MasterCommander.Integrations.DirectoryService') | ||
|
||
## DirectoryService.SetWorkingDirectory(string) Method | ||
|
||
Sets the working directory to the directory where the specified solution is located. | ||
|
||
```csharp | ||
public void SetWorkingDirectory(string relativePath); | ||
``` | ||
#### Parameters | ||
|
||
<a name='MasterCommander.Integrations.DirectoryService.SetWorkingDirectory(string).relativePath'></a> | ||
|
||
`relativePath` [System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String') | ||
|
||
The relative path from the MasterCommander directory to the solution directory. | ||
|
||
Implements [SetWorkingDirectory(string)](IDirectoryService.SetWorkingDirectory(string).md 'MasterCommander.Core.Services.IDirectoryService.SetWorkingDirectory(string)') |
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
27 changes: 27 additions & 0 deletions
27
docs/master-commander/IDirectoryService.CreateNewDirectory(string,string).md
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#### [MasterCommander](MasterCommander.md 'MasterCommander') | ||
### [MasterCommander.Core.Services](MasterCommander.md#MasterCommander.Core.Services 'MasterCommander.Core.Services').[IDirectoryService](IDirectoryService.md 'MasterCommander.Core.Services.IDirectoryService') | ||
|
||
## IDirectoryService.CreateNewDirectory(string, string) Method | ||
|
||
Creates a new directory within a specified base directory. | ||
|
||
```csharp | ||
string CreateNewDirectory(string baseDirectory, string newDirectoryName); | ||
``` | ||
#### Parameters | ||
|
||
<a name='MasterCommander.Core.Services.IDirectoryService.CreateNewDirectory(string,string).baseDirectory'></a> | ||
|
||
`baseDirectory` [System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String') | ||
|
||
The base directory where the new directory will be created. | ||
|
||
<a name='MasterCommander.Core.Services.IDirectoryService.CreateNewDirectory(string,string).newDirectoryName'></a> | ||
|
||
`newDirectoryName` [System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String') | ||
|
||
The name of the new directory to create. | ||
|
||
#### Returns | ||
[System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String') | ||
The path of the newly created directory. |
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
17 changes: 17 additions & 0 deletions
17
docs/master-commander/IDirectoryService.SetWorkingDirectory(string).md
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#### [MasterCommander](MasterCommander.md 'MasterCommander') | ||
### [MasterCommander.Core.Services](MasterCommander.md#MasterCommander.Core.Services 'MasterCommander.Core.Services').[IDirectoryService](IDirectoryService.md 'MasterCommander.Core.Services.IDirectoryService') | ||
|
||
## IDirectoryService.SetWorkingDirectory(string) Method | ||
|
||
Sets the working directory to the directory where the specified solution is located. | ||
|
||
```csharp | ||
void SetWorkingDirectory(string relativePath); | ||
``` | ||
#### Parameters | ||
|
||
<a name='MasterCommander.Core.Services.IDirectoryService.SetWorkingDirectory(string).relativePath'></a> | ||
|
||
`relativePath` [System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String') | ||
|
||
The relative path from the MasterCommander directory to the solution directory. |
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