-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d110d1
commit fa61da3
Showing
22 changed files
with
43 additions
and
490 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace Cheese.Contract.Providers; | ||
|
||
public interface ILocalizationProvider : IProvider | ||
{ | ||
void Execute(string target); | ||
} |
2 changes: 1 addition & 1 deletion
2
...ontract/References/IReferencesProvider.cs → ...Contract/Providers/IReferencesProvider.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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,8 +1,29 @@ | ||
namespace Cheese.Shared; | ||
namespace Cheese.Shared.PipeLine; | ||
|
||
public class CoreProcess | ||
{ | ||
/// <summary> | ||
/// The root path of current project, if not in any cheese project, you get null | ||
/// </summary> | ||
public string? ProjectRootPath { get; set; } | ||
|
||
/// <summary> | ||
/// Where cheese startup | ||
/// For example: | ||
/// $ cd */xxx | ||
/// $ cheese ... | ||
/// Then, `StartupPath` will be "*/xxx" | ||
/// </summary> | ||
public string? StartupPath { get; set; } | ||
|
||
/// <summary> | ||
/// The absolute path for `.cheese` folder in current project | ||
/// If not in any cheese project, you get null | ||
/// </summary> | ||
public string? CheeseDataPath { get; set; } | ||
|
||
|
||
public RepoInfo? RepoInfo; | ||
/// <summary> | ||
/// Basic information for current repo/project | ||
/// </summary> | ||
public RepoInfo? RepoInfo { get; set; } | ||
} |
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ namespace Cheese.Shared; | |
|
||
public class RepoInfo | ||
{ | ||
public string? WorkBase; | ||
|
||
} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.