Skip to content

Commit 3a29c9c

Browse files
seto77claude
andcommitted
Fix CI build broken by previous commit
- Add missing build/CheckResxDuplicates.targets imported by Crystallography.Controls.csproj - Restore Crystallography.Controls files erroneously deleted in 11e7385 (DataSet, GraphicsBox, Macro, PyRichTextBox, designers and resx) that are still part of the library Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 11e7385 commit 3a29c9c

42 files changed

Lines changed: 9528 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
[*.cs]
2+
3+
# WFO1000: A property should determine its property content serialization with the DesignerSerializationVisibilityAttribute, DefaultValueAttribute or the ShouldSerializeProperty method
4+
dotnet_diagnostic.WFO1000.severity = silent
5+
[*.cs]
6+
#### 命名スタイル ####
7+
8+
# 名前付けルール
9+
10+
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
11+
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
12+
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
13+
14+
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
15+
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
16+
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
17+
18+
# 記号の仕様
19+
20+
dotnet_naming_symbols.interface.applicable_kinds = interface
21+
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
22+
dotnet_naming_symbols.interface.required_modifiers =
23+
24+
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
25+
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
26+
dotnet_naming_symbols.types.required_modifiers =
27+
28+
# 命名スタイル
29+
30+
dotnet_naming_style.begins_with_i.required_prefix = I
31+
dotnet_naming_style.begins_with_i.required_suffix =
32+
dotnet_naming_style.begins_with_i.word_separator =
33+
dotnet_naming_style.begins_with_i.capitalization = pascal_case
34+
35+
dotnet_naming_style.pascal_case.required_prefix =
36+
dotnet_naming_style.pascal_case.required_suffix =
37+
dotnet_naming_style.pascal_case.word_separator =
38+
dotnet_naming_style.pascal_case.capitalization = pascal_case
39+
csharp_indent_labels = one_less_than_current
40+
csharp_space_around_binary_operators = before_and_after
41+
csharp_using_directive_placement = outside_namespace:silent
42+
csharp_style_conditional_delegate_call = true:suggestion
43+
csharp_style_var_for_built_in_types = false:silent
44+
csharp_style_var_when_type_is_apparent = false:silent
45+
csharp_style_var_elsewhere = false:silent
46+
csharp_prefer_simple_using_statement = true:suggestion
47+
csharp_prefer_braces = true:silent
48+
csharp_style_namespace_declarations = block_scoped:silent
49+
csharp_style_prefer_method_group_conversion = true:silent
50+
csharp_style_prefer_top_level_statements = true:silent
51+
csharp_style_prefer_primary_constructors = true:suggestion
52+
csharp_prefer_system_threading_lock = true:suggestion
53+
csharp_style_prefer_switch_expression = true:suggestion
54+
csharp_style_prefer_pattern_matching = true:silent
55+
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
56+
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
57+
csharp_style_prefer_not_pattern = true:suggestion
58+
csharp_style_prefer_extended_property_pattern = true:suggestion
59+
csharp_prefer_static_local_function = true:suggestion
60+
csharp_prefer_static_anonymous_function = true:suggestion
61+
csharp_style_prefer_readonly_struct = true:suggestion
62+
csharp_style_prefer_readonly_struct_member = true:suggestion
63+
csharp_style_expression_bodied_methods = false:silent
64+
csharp_style_expression_bodied_constructors = false:silent
65+
csharp_style_expression_bodied_operators = false:silent
66+
csharp_style_expression_bodied_properties = true:silent
67+
csharp_style_expression_bodied_indexers = true:silent
68+
csharp_style_expression_bodied_accessors = true:silent
69+
70+
[*.vb]
71+
#### 命名スタイル ####
72+
73+
# 名前付けルール
74+
75+
dotnet_naming_rule.interface_should_be_i_で始まる.severity = suggestion
76+
dotnet_naming_rule.interface_should_be_i_で始まる.symbols = interface
77+
dotnet_naming_rule.interface_should_be_i_で始まる.style = i_で始まる
78+
79+
dotnet_naming_rule.型_should_be_パスカル_ケース.severity = suggestion
80+
dotnet_naming_rule.型_should_be_パスカル_ケース.symbols =
81+
dotnet_naming_rule.型_should_be_パスカル_ケース.style = パスカル_ケース
82+
83+
dotnet_naming_rule.フィールド以外のメンバー_should_be_パスカル_ケース.severity = suggestion
84+
dotnet_naming_rule.フィールド以外のメンバー_should_be_パスカル_ケース.symbols = フィールド以外のメンバー
85+
dotnet_naming_rule.フィールド以外のメンバー_should_be_パスカル_ケース.style = パスカル_ケース
86+
87+
# 記号の仕様
88+
89+
dotnet_naming_symbols.interface.applicable_kinds = interface
90+
dotnet_naming_symbols.interface.applicable_accessibilities = public, friend, private, protected, protected_friend, private_protected
91+
dotnet_naming_symbols.interface.required_modifiers =
92+
93+
dotnet_naming_symbols.型.applicable_kinds = class, struct, interface, enum
94+
dotnet_naming_symbols.型.applicable_accessibilities = public, friend, private, protected, protected_friend, private_protected
95+
dotnet_naming_symbols.型.required_modifiers =
96+
97+
dotnet_naming_symbols.フィールド以外のメンバー.applicable_kinds = property, event, method
98+
dotnet_naming_symbols.フィールド以外のメンバー.applicable_accessibilities = public, friend, private, protected, protected_friend, private_protected
99+
dotnet_naming_symbols.フィールド以外のメンバー.required_modifiers =
100+
101+
# 命名スタイル
102+
103+
dotnet_naming_style.i_で始まる.required_prefix = I
104+
dotnet_naming_style.i_で始まる.required_suffix =
105+
dotnet_naming_style.i_で始まる.word_separator =
106+
dotnet_naming_style.i_で始まる.capitalization = pascal_case
107+
108+
dotnet_naming_style.パスカル_ケース.required_prefix =
109+
dotnet_naming_style.パスカル_ケース.required_suffix =
110+
dotnet_naming_style.パスカル_ケース.word_separator =
111+
dotnet_naming_style.パスカル_ケース.capitalization = pascal_case
112+
113+
dotnet_naming_style.パスカル_ケース.required_prefix =
114+
dotnet_naming_style.パスカル_ケース.required_suffix =
115+
dotnet_naming_style.パスカル_ケース.word_separator =
116+
dotnet_naming_style.パスカル_ケース.capitalization = pascal_case
117+
118+
[*.{cs,vb}]
119+
tab_width = 4
120+
indent_size = 4
121+
dotnet_style_operator_placement_when_wrapping = beginning_of_line
122+
end_of_line = crlf
123+
dotnet_style_qualification_for_field = false:silent
124+
dotnet_style_qualification_for_property = false:silent
125+
dotnet_style_qualification_for_method = false:silent
126+
dotnet_style_qualification_for_event = false:silent
127+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
128+
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
129+
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
130+
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
131+
dotnet_code_quality_unused_parameters = all:suggestion
132+
dotnet_style_readonly_field = true:suggestion
133+
dotnet_style_require_accessibility_modifiers = for_non_interface_members:silent
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<root>
3+
<!--
4+
Microsoft ResX Schema
5+
6+
Version 2.0
7+
8+
The primary goals of this format is to allow a simple XML format
9+
that is mostly human readable. The generation and parsing of the
10+
various data types are done through the TypeConverter classes
11+
associated with the data types.
12+
13+
Example:
14+
15+
... ado.net/XML headers & schema ...
16+
<resheader name="resmimetype">text/microsoft-resx</resheader>
17+
<resheader name="version">2.0</resheader>
18+
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19+
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20+
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21+
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22+
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23+
<value>[base64 mime encoded serialized .NET Framework object]</value>
24+
</data>
25+
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26+
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27+
<comment>This is a comment</comment>
28+
</data>
29+
30+
There are any number of "resheader" rows that contain simple
31+
name/value pairs.
32+
33+
Each data row contains a name, and value. The row also contains a
34+
type or mimetype. Type corresponds to a .NET class that support
35+
text/value conversion through the TypeConverter architecture.
36+
Classes that don't support this are serialized and stored with the
37+
mimetype set.
38+
39+
The mimetype is used for serialized objects, and tells the
40+
ResXResourceReader how to depersist the object. This is currently not
41+
extensible. For a given mimetype the value must be set accordingly:
42+
43+
Note - application/x-microsoft.net.object.binary.base64 is the format
44+
that the ResXResourceWriter will generate, however the reader can
45+
read any of the formats listed below.
46+
47+
mimetype: application/x-microsoft.net.object.binary.base64
48+
value : The object must be serialized with
49+
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50+
: and then encoded with base64 encoding.
51+
52+
mimetype: application/x-microsoft.net.object.soap.base64
53+
value : The object must be serialized with
54+
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55+
: and then encoded with base64 encoding.
56+
57+
mimetype: application/x-microsoft.net.object.bytearray.base64
58+
value : The object must be serialized into a byte array
59+
: using a System.ComponentModel.TypeConverter
60+
: and then encoded with base64 encoding.
61+
-->
62+
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64+
<xsd:element name="root" msdata:IsDataSet="true">
65+
<xsd:complexType>
66+
<xsd:choice maxOccurs="unbounded">
67+
<xsd:element name="metadata">
68+
<xsd:complexType>
69+
<xsd:sequence>
70+
<xsd:element name="value" type="xsd:string" minOccurs="0" />
71+
</xsd:sequence>
72+
<xsd:attribute name="name" use="required" type="xsd:string" />
73+
<xsd:attribute name="type" type="xsd:string" />
74+
<xsd:attribute name="mimetype" type="xsd:string" />
75+
<xsd:attribute ref="xml:space" />
76+
</xsd:complexType>
77+
</xsd:element>
78+
<xsd:element name="assembly">
79+
<xsd:complexType>
80+
<xsd:attribute name="alias" type="xsd:string" />
81+
<xsd:attribute name="name" type="xsd:string" />
82+
</xsd:complexType>
83+
</xsd:element>
84+
<xsd:element name="data">
85+
<xsd:complexType>
86+
<xsd:sequence>
87+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88+
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89+
</xsd:sequence>
90+
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91+
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92+
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93+
<xsd:attribute ref="xml:space" />
94+
</xsd:complexType>
95+
</xsd:element>
96+
<xsd:element name="resheader">
97+
<xsd:complexType>
98+
<xsd:sequence>
99+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100+
</xsd:sequence>
101+
<xsd:attribute name="name" type="xsd:string" use="required" />
102+
</xsd:complexType>
103+
</xsd:element>
104+
</xsd:choice>
105+
</xsd:complexType>
106+
</xsd:element>
107+
</xsd:schema>
108+
<resheader name="resmimetype">
109+
<value>text/microsoft-resx</value>
110+
</resheader>
111+
<resheader name="version">
112+
<value>2.0</value>
113+
</resheader>
114+
<resheader name="reader">
115+
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116+
</resheader>
117+
<resheader name="writer">
118+
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119+
</resheader>
120+
<metadata name="captureExtender.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
121+
<value>17, 17</value>
122+
</metadata>
123+
</root>
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<root>
2+
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
3+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
4+
<xsd:element name="root" msdata:IsDataSet="true">
5+
<xsd:complexType>
6+
<xsd:choice maxOccurs="unbounded">
7+
<xsd:element name="metadata">
8+
<xsd:complexType>
9+
<xsd:sequence>
10+
<xsd:element name="value" type="xsd:string" minOccurs="0" />
11+
</xsd:sequence>
12+
<xsd:attribute name="name" use="required" type="xsd:string" />
13+
<xsd:attribute name="type" type="xsd:string" />
14+
<xsd:attribute name="mimetype" type="xsd:string" />
15+
<xsd:attribute ref="xml:space" />
16+
</xsd:complexType>
17+
</xsd:element>
18+
<xsd:element name="assembly">
19+
<xsd:complexType>
20+
<xsd:attribute name="alias" type="xsd:string" />
21+
<xsd:attribute name="name" type="xsd:string" />
22+
</xsd:complexType>
23+
</xsd:element>
24+
<xsd:element name="data">
25+
<xsd:complexType>
26+
<xsd:sequence>
27+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
28+
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
29+
</xsd:sequence>
30+
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
31+
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
32+
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
33+
<xsd:attribute ref="xml:space" />
34+
</xsd:complexType>
35+
</xsd:element>
36+
<xsd:element name="resheader">
37+
<xsd:complexType>
38+
<xsd:sequence>
39+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
40+
</xsd:sequence>
41+
<xsd:attribute name="name" type="xsd:string" use="required" />
42+
</xsd:complexType>
43+
</xsd:element>
44+
</xsd:choice>
45+
</xsd:complexType>
46+
</xsd:element>
47+
</xsd:schema>
48+
<resheader name="resmimetype">
49+
<value>text/microsoft-resx</value>
50+
</resheader>
51+
<resheader name="version">
52+
<value>2.0</value>
53+
</resheader>
54+
<resheader name="reader">
55+
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
56+
</resheader>
57+
<resheader name="writer">
58+
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
59+
</resheader>
60+
</root>

0 commit comments

Comments
 (0)