forked from OpportunityLiu/E-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrings.resgenconfig
40 lines (30 loc) · 2.88 KB
/
Strings.resgenconfig
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
{
"$schema": "https://raw.githubusercontent.com/OpportunityLiu/ResourceGenerator/master/resgenconfig.json?version=1.3.7",
// Path for resource files (*.resw & *.resjson).
// Default value is "/Strings".
"ResourcePath": "/Strings",
// Default language of resources, will be detected automatically if unset.
"SourceLanguagePath": "en",
// Namespace for resource visitor class.
// Default value is "<ProjectDefaultNamespace>".
//"LocalizedStringsNamespace": "MyNamespace",
// Namespace for resource visitor interfaces.
// Default value is "<ProjectDefaultNamespace>.ResourceInfo".
//"InterfacesNamespace": "MyNamespace.ResourceInfo",
// Modifier for resource visitor class and interfaces.
"Modifier": "internal",
// Specifies whether this project is the default project or not.
// Determines if it is necessary to contains project name in the resource path.
"IsDefaultProject": false,
// Regard resource strings whose name starts with '$' as format string.
// Default value is false.
"IsFormatStringEnabled": true,
// Format function used for format strings, must be replaceble with string.Format.
//"FormatStringFunction": "string.Format",
// Excluded resource paths.
//"Exclude": [],
// Included resource paths, has higher priority than Exclude.
//"Include": [],
// Specifies whether the tool generates code that is debuggable.
"DebugGeneratedCode": false
}