forked from Advance-Technologies-Foundation/clio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIWorkspacePathBuilder.cs
53 lines (39 loc) · 1.24 KB
/
IWorkspacePathBuilder.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System;
namespace Clio.Workspaces
{
#region Interface: IWorkspacePathBuilder
public interface IWorkspacePathBuilder
{
#region Properties: Public
string RootPath { get; set; }
bool IsWorkspace { get; }
string ClioDirectoryPath { get; }
string WorkspaceSettingsPath { get; }
string WorkspaceEnvironmentSettingsPath { get; }
string PackagesFolderPath { get; }
string ProjectsFolderPath { get; }
string ProjectsTestsFolderPath { get; }
string SolutionFolderPath { get; }
string SolutionPath { get; }
string NugetFolderPath { get; }
string TasksFolderPath { get; }
string ApplicationFolderPath { get; }
string CoreBinFolderPath { get; }
string LibFolderPath { get; }
string ConfigurationBinFolderPath { get; }
#endregion
#region Methods: Public
string BuildPackagePath(string packageName);
/// <summary>
/// Path to csproj file of package
/// </summary>
/// <param name="packageName"></param>
/// <returns></returns>
string BuildPackageProjectPath(string packageName);
string BuildFrameworkCreatioSdkPath(Version nugetVersion);
string BuildCoreCreatioSdkPath(Version nugetVersion);
string BuildRelativePathRegardingPackageProjectPath(string destinationPath);
#endregion
}
#endregion
}