-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathlibwarcraft.sln
More file actions
171 lines (168 loc) · 7.36 KB
/
libwarcraft.sln
File metadata and controls
171 lines (168 loc) · 7.36 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "metadata", ".\", "{F1A57014-71CE-4032-A652-01B7E35E14DB}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
stylecop.json = stylecop.json
stylecop.ruleset = stylecop.ruleset
Directory.Build.props = Directory.Build.props
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "libwarcraft", "libwarcraft\libwarcraft.csproj", "{DA06A44E-A67B-46C7-B07D-E90AEBED0502}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "libwarcraft.Tests", "libwarcraft.Tests\libwarcraft.Tests.csproj", "{268F010D-F38E-45B3-A4BC-DF986841D2FA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Release|Any CPU = Release|Any CPU
Debug|Any CPU = Debug|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DA06A44E-A67B-46C7-B07D-E90AEBED0502}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DA06A44E-A67B-46C7-B07D-E90AEBED0502}.Release|Any CPU.Build.0 = Release|Any CPU
{DA06A44E-A67B-46C7-B07D-E90AEBED0502}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DA06A44E-A67B-46C7-B07D-E90AEBED0502}.Debug|Any CPU.Build.0 = Debug|Any CPU
{268F010D-F38E-45B3-A4BC-DF986841D2FA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{268F010D-F38E-45B3-A4BC-DF986841D2FA}.Release|Any CPU.Build.0 = Release|Any CPU
{268F010D-F38E-45B3-A4BC-DF986841D2FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{268F010D-F38E-45B3-A4BC-DF986841D2FA}.Debug|Any CPU.Build.0 = Debug|Any CPU
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
Policies = $0
$0.DotNetNamingPolicy = $1
$1.DirectoryNamespaceAssociation = PrefixedHierarchical
$1.ResourceNamePolicy = FileFormatDefault
$0.StandardHeader = $2
$2.Text = @ \n ${FileName}\n \n Author:\n ${AuthorName} <${AuthorEmail}>\n\n Copyright (c) ${Year} ${CopyrightHolder}\n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n
$2.IncludeInNewFiles = True
$0.NameConventionPolicy = $3
$3.Rules = $4
$4.NamingRule = $5
$5.Name = Namespaces
$5.AffectedEntity = Namespace
$5.VisibilityMask = VisibilityMask
$5.NamingStyle = PascalCase
$5.IncludeInstanceMembers = True
$5.IncludeStaticEntities = True
$4.NamingRule = $6
$6.Name = Types
$6.AffectedEntity = Class, Struct, Enum, Delegate
$6.VisibilityMask = Public
$6.NamingStyle = PascalCase
$6.IncludeInstanceMembers = True
$6.IncludeStaticEntities = True
$4.NamingRule = $7
$7.Name = Interfaces
$7.RequiredPrefixes = $8
$8.String = I
$7.AffectedEntity = Interface
$7.VisibilityMask = Public
$7.NamingStyle = PascalCase
$7.IncludeInstanceMembers = True
$7.IncludeStaticEntities = True
$4.NamingRule = $9
$9.Name = Attributes
$9.RequiredSuffixes = $10
$10.String = Attribute
$9.AffectedEntity = CustomAttributes
$9.VisibilityMask = Public
$9.NamingStyle = PascalCase
$9.IncludeInstanceMembers = True
$9.IncludeStaticEntities = True
$4.NamingRule = $11
$11.Name = Event Arguments
$11.RequiredSuffixes = $12
$12.String = EventArgs
$11.AffectedEntity = CustomEventArgs
$11.VisibilityMask = Public
$11.NamingStyle = PascalCase
$11.IncludeInstanceMembers = True
$11.IncludeStaticEntities = True
$4.NamingRule = $13
$13.Name = Exceptions
$13.RequiredSuffixes = $14
$14.String = Exception
$13.AffectedEntity = CustomExceptions
$13.VisibilityMask = VisibilityMask
$13.NamingStyle = PascalCase
$13.IncludeInstanceMembers = True
$13.IncludeStaticEntities = True
$4.NamingRule = $15
$15.Name = Methods
$15.AffectedEntity = Methods
$15.VisibilityMask = Protected, Public
$15.NamingStyle = PascalCase
$15.IncludeInstanceMembers = True
$15.IncludeStaticEntities = True
$4.NamingRule = $16
$16.Name = Static Readonly Fields
$16.AffectedEntity = ReadonlyField
$16.VisibilityMask = Protected, Public
$16.NamingStyle = PascalCase
$16.IncludeInstanceMembers = False
$16.IncludeStaticEntities = True
$4.NamingRule = $17
$17.Name = Fields
$17.AffectedEntity = Field
$17.VisibilityMask = Protected, Public
$17.NamingStyle = PascalCase
$17.IncludeInstanceMembers = True
$17.IncludeStaticEntities = True
$4.NamingRule = $18
$18.Name = ReadOnly Fields
$18.AffectedEntity = ReadonlyField
$18.VisibilityMask = Protected, Public
$18.NamingStyle = PascalCase
$18.IncludeInstanceMembers = True
$18.IncludeStaticEntities = False
$4.NamingRule = $19
$19.Name = Constant Fields
$19.AffectedEntity = ConstantField
$19.VisibilityMask = Protected, Public
$19.NamingStyle = PascalCase
$19.IncludeInstanceMembers = True
$19.IncludeStaticEntities = True
$4.NamingRule = $20
$20.Name = Properties
$20.AffectedEntity = Property
$20.VisibilityMask = Protected, Public
$20.NamingStyle = PascalCase
$20.IncludeInstanceMembers = True
$20.IncludeStaticEntities = True
$4.NamingRule = $21
$21.Name = Events
$21.AffectedEntity = Event
$21.VisibilityMask = Protected, Public
$21.NamingStyle = PascalCase
$21.IncludeInstanceMembers = True
$21.IncludeStaticEntities = True
$4.NamingRule = $22
$22.Name = Enum Members
$22.AffectedEntity = EnumMember
$22.VisibilityMask = VisibilityMask
$22.NamingStyle = PascalCase
$22.IncludeInstanceMembers = True
$22.IncludeStaticEntities = True
$4.NamingRule = $23
$23.Name = Parameters
$23.AffectedEntity = Parameter
$23.VisibilityMask = VisibilityMask
$23.NamingStyle = CamelCase
$23.IncludeInstanceMembers = True
$23.IncludeStaticEntities = True
$4.NamingRule = $24
$24.Name = Type Parameters
$24.RequiredPrefixes = $25
$25.String = T
$24.AffectedEntity = TypeParameter
$24.VisibilityMask = VisibilityMask
$24.NamingStyle = PascalCase
$24.IncludeInstanceMembers = True
$24.IncludeStaticEntities = True
$0.VersionControlPolicy = $26
$26.inheritsSet = Mono
version = 1.0
StartupItem = libwarcraft\libwarcraft.csproj
EndGlobalSection
EndGlobal