-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppInfo.cs
More file actions
57 lines (47 loc) · 1.56 KB
/
AppInfo.cs
File metadata and controls
57 lines (47 loc) · 1.56 KB
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
54
55
56
57
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RangeOfInfluenceDetection
{
public static class AppInfomation
{
#region プロパティ
/// <summary>
/// frmPathSelect(ソリューション選択画面)のインスタンス
/// </summary>
public static frmPathSelect PathSelectForm { get; set; }
/// <summary>
/// frmAllFileList(ファイル選択画面)
/// </summary>
public static frmAllFileList ListForm { get; set; }
/// <summary>
/// ファイル検索用パス
/// </summary>
public static string SearchDirectory { get; set; }
/// <summary>
/// 選択された拡張子
/// </summary>
public static string Extension { get; set; }
/// <summary>
/// 画面表示用拡張子文字列
/// </summary>
public static string Display { get; set; }
/// <summary>
/// ファイル名リスト
/// </summary>
public static List<string> FileNameList { get; set; }
/// <summary>
/// ファイル一覧画面へのマーキング有無
/// </summary>
public static bool Marking { get; set; }
/// <summary>
/// 派生クラス一覧
/// </summary>
public static Dictionary<string, List<string>> Derived {get; set;}
#endregion
}
}