Skip to content

Commit 2966051

Browse files
authored
Improved audit tool and related IDS fixes. (#292)
* Adjusted string encoding of boolean values to XML According to XML standard documentation. * Updated audit tool library and fixed IDS files Test case and development files have been adjusted to address new issues discovered by tool. A number of cases previously listed as fail are now marked invalid.
1 parent d484120 commit 2966051

File tree

33 files changed

+67
-67
lines changed

33 files changed

+67
-67
lines changed

Development/IDS_SimpleBIM_examples.ids

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<ids:simpleValue>IsExternal</ids:simpleValue>
7474
</ids:baseName>
7575
<ids:value>
76-
<ids:simpleValue>TRUE</ids:simpleValue>
76+
<ids:simpleValue>true</ids:simpleValue>
7777
</ids:value>
7878
</ids:property>
7979
</ids:applicability>

Documentation/testcases/attribute/fail-booleans_must_be_specified_as_uppercase_strings_1_3.ids Documentation/testcases/attribute/fail-booleans_must_be_specified_as_lowercase_strings_1_3.ids

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Booleans must be specified as uppercase strings 1/3</title>
4+
<title>Booleans must be specified as lowercase strings 1/3</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Booleans must be specified as uppercase strings 1/3" ifcVersion="IFC2X3 IFC4">
8+
<specification name="Booleans must be specified as lowercase strings 1/3" ifcVersion="IFC2X3 IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>
@@ -19,7 +19,7 @@
1919
<simpleValue>IsMilestone</simpleValue>
2020
</name>
2121
<value>
22-
<simpleValue>TRUE</simpleValue>
22+
<simpleValue>true</simpleValue>
2323
</value>
2424
</attribute>
2525
</requirements>

Documentation/testcases/attribute/pass-booleans_must_be_specified_as_uppercase_strings_2_3.ids Documentation/testcases/attribute/invalid-booleans_must_be_specified_as_lowercase_strings_2_3.ids

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Booleans must be specified as uppercase strings 2/3</title>
4+
<title>Booleans must be specified as lowercase strings 2/3</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Booleans must be specified as uppercase strings 2/3" ifcVersion="IFC2X3 IFC4">
8+
<specification name="Booleans must be specified as lowercase strings 2/3" ifcVersion="IFC2X3 IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>

Documentation/testcases/attribute/pass-integers_follow_the_same_rules_as_numbers_2_2.ids Documentation/testcases/attribute/invalid-integers_cannot_be_expressed_as_floating_point_numbers_2_2.ids

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Integers follow the same rules as numbers 2/2</title>
4+
<title>Integers cannot be expressed as floating point numbers 2/2</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Integers follow the same rules as numbers 2/2" ifcVersion="IFC4">
8+
<specification name="Integers cannot be expressed as floating point numbers 2/2" ifcVersion="IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>

Documentation/testcases/attribute/fail-specifying_a_float_when_the_value_is_an_integer_will_fail.ids Documentation/testcases/attribute/invalid-specifying_a_float_when_the_value_is_an_integer_is_invalid.ids

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Specifying a float when the value is an integer will fail</title>
4+
<title>Specifying a float when the value is an integer is invalid</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Specifying a float when the value is an integer will fail" ifcVersion="IFC4">
8+
<specification name="Specifying a float when the value is an integer is invalid" ifcVersion="IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>

Documentation/testcases/attribute/fail-booleans_must_be_specified_as_uppercase_strings_2_3.ids Documentation/testcases/attribute/pass-booleans_must_be_specified_as_lowercase_strings_2_3.ids

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Booleans must be specified as uppercase strings 2/3</title>
4+
<title>Booleans must be specified as lowercase strings 2/3</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Booleans must be specified as uppercase strings 2/3" ifcVersion="IFC2X3 IFC4">
8+
<specification name="Booleans must be specified as lowercase strings 2/3" ifcVersion="IFC2X3 IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>
@@ -19,7 +19,7 @@
1919
<simpleValue>IsMilestone</simpleValue>
2020
</name>
2121
<value>
22-
<simpleValue>False</simpleValue>
22+
<simpleValue>false</simpleValue>
2323
</value>
2424
</attribute>
2525
</requirements>

Documentation/testcases/property/fail-booleans_must_be_specified_as_uppercase_strings_1_3.ids Documentation/testcases/property/fail-booleans_must_be_specified_as_lowercase_strings_1_3.ids

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Booleans must be specified as uppercase strings 1/3</title>
4+
<title>Booleans must be specified as lowercase strings 1/3</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Booleans must be specified as uppercase strings 1/3" ifcVersion="IFC2X3 IFC4">
8+
<specification name="Booleans must be specified as lowercase strings 1/3" ifcVersion="IFC2X3 IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>
@@ -22,7 +22,7 @@
2222
<simpleValue>Foo</simpleValue>
2323
</baseName>
2424
<value>
25-
<simpleValue>TRUE</simpleValue>
25+
<simpleValue>true</simpleValue>
2626
</value>
2727
</property>
2828
</requirements>

Documentation/testcases/property/pass-booleans_must_be_specified_as_uppercase_strings_2_3.ids Documentation/testcases/property/invalid-booleans_must_be_specified_as_lowercase_strings_3_3.ids

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Booleans must be specified as uppercase strings 2/3</title>
4+
<title>Booleans must be specified as lowercase strings 3/3</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Booleans must be specified as uppercase strings 2/3" ifcVersion="IFC2X3 IFC4">
8+
<specification name="Booleans must be specified as lowercase strings 3/3" ifcVersion="IFC2X3 IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>

Documentation/testcases/property/pass-integer_values_are_checked_using_type_casting_2_4.ids Documentation/testcases/property/invalid-integer_values_cannot_be_stored_with_decimal_2_4.ids

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Integer values are checked using type casting 2/4</title>
4+
<title>Integer values cannot be stored with decimal 2/4</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Integer values are checked using type casting 2/4" ifcVersion="IFC2X3 IFC4">
8+
<specification name="Integer values cannot be stored with decimal 2/4" ifcVersion="IFC2X3 IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>

Documentation/testcases/property/pass-integer_values_are_checked_using_type_casting_3_4.ids Documentation/testcases/property/invalid-integer_values_cannot_be_stored_with_decimal_3_4.ids

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Integer values are checked using type casting 3/4</title>
4+
<title>Integer values cannot be stored with decimal 3/4</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Integer values are checked using type casting 3/4" ifcVersion="IFC2X3 IFC4">
8+
<specification name="Integer values cannot be stored with decimal 3/4" ifcVersion="IFC2X3 IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>

Documentation/testcases/property/fail-booleans_must_be_specified_as_uppercase_strings_3_3.ids Documentation/testcases/property/pass-booleans_must_be_specified_as_lowercase_strings_2_3.ids

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<ids xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.buildingsmart.org/IDS http://standards.buildingsmart.org/IDS/0.9.7/ids.xsd" xmlns="http://standards.buildingsmart.org/IDS">
33
<info>
4-
<title>Booleans must be specified as uppercase strings 3/3</title>
4+
<title>Booleans must be specified as lowercase strings 2/3</title>
55
<description>Generated via code automation in the Ids Repository on github.</description>
66
</info>
77
<specifications>
8-
<specification name="Booleans must be specified as uppercase strings 3/3" ifcVersion="IFC2X3 IFC4">
8+
<specification name="Booleans must be specified as lowercase strings 2/3" ifcVersion="IFC2X3 IFC4">
99
<applicability maxOccurs="unbounded">
1010
<entity>
1111
<name>
@@ -22,7 +22,7 @@
2222
<simpleValue>Foo</simpleValue>
2323
</baseName>
2424
<value>
25-
<simpleValue>False</simpleValue>
25+
<simpleValue>false</simpleValue>
2626
</value>
2727
</property>
2828
</requirements>

Documentation/testcases/scripts.md

+41-41
Original file line numberDiff line numberDiff line change
@@ -214,31 +214,31 @@ Requirements:
214214
Attribute: ''Name''
215215
```
216216

217-
### Booleans must be specified as uppercase strings 1/3
217+
### Booleans must be specified as lowercase strings 1/3
218218

219-
``` ids attribute/fail-booleans_must_be_specified_as_uppercase_strings_1_3.ids
220-
Booleans must be specified as uppercase strings 1/3
219+
``` ids attribute/fail-booleans_must_be_specified_as_lowercase_strings_1_3.ids
220+
Booleans must be specified as lowercase strings 1/3
221221
Entity: ''IFCTASK''
222222
Requirements:
223-
Attribute: ''IsMilestone'',''TRUE''
223+
Attribute: ''IsMilestone'',''true''
224224
```
225225

226-
### Booleans must be specified as uppercase strings 2/3
226+
### Booleans must be specified as lowercase strings 2/3
227227

228-
``` ids attribute/fail-booleans_must_be_specified_as_uppercase_strings_2_3.ids
229-
Booleans must be specified as uppercase strings 2/3
228+
``` ids attribute/invalid-booleans_must_be_specified_as_lowercase_strings_2_3.ids
229+
Booleans must be specified as lowercase strings 2/3
230230
Entity: ''IFCTASK''
231231
Requirements:
232-
Attribute: ''IsMilestone'',''False''
232+
Attribute: ''IsMilestone'',''FALSE''
233233
```
234234

235-
### Booleans must be specified as uppercase strings 2/3
235+
### Booleans must be specified as lowercase strings 2/3
236236

237-
``` ids attribute/pass-booleans_must_be_specified_as_uppercase_strings_2_3.ids
238-
Booleans must be specified as uppercase strings 2/3
237+
``` ids attribute/pass-booleans_must_be_specified_as_lowercase_strings_2_3.ids
238+
Booleans must be specified as lowercase strings 2/3
239239
Entity: ''IFCTASK''
240240
Requirements:
241-
Attribute: ''IsMilestone'',''FALSE''
241+
Attribute: ''IsMilestone'',''false''
242242
```
243243

244244
### Dates are treated as strings 1/2
@@ -355,10 +355,10 @@ Requirements:
355355
Attribute: ''NumberOfRisers'',''42''
356356
```
357357

358-
### Integers follow the same rules as numbers 2/2
358+
### Integers cannot be expressed as floating point numbers 2/2
359359

360-
``` ids attribute/pass-integers_follow_the_same_rules_as_numbers_2_2.ids
361-
Integers follow the same rules as numbers 2/2
360+
``` ids attribute/invalid-integers_cannot_be_expressed_as_floating_point_numbers_2_2.ids
361+
Integers cannot be expressed as floating point numbers 2/2
362362
IFC4
363363
Entity: ''IFCSTAIRFLIGHT''
364364
Requirements:
@@ -459,7 +459,7 @@ Attribute: ''RefractionIndex'',''42''
459459

460460
### Only specifically formatted numbers are allowed 1/4
461461

462-
``` ids attribute/fail-only_specifically_formatted_numbers_are_allowed_1_4.ids
462+
``` ids attribute/invalid-only_specifically_formatted_numbers_are_allowed_1_4.ids
463463
Only specifically formatted numbers are allowed 1/4
464464
Entity: ''IFCSURFACESTYLEREFRACTION''
465465
Requirements:
@@ -468,7 +468,7 @@ Attribute: ''RefractionIndex'',''42,3''
468468

469469
### Only specifically formatted numbers are allowed 2/4
470470

471-
``` ids attribute/fail-only_specifically_formatted_numbers_are_allowed_2_4.ids
471+
``` ids attribute/invalid-only_specifically_formatted_numbers_are_allowed_2_4.ids
472472
Only specifically formatted numbers are allowed 2/4
473473
Entity: ''IFCSURFACESTYLEREFRACTION''
474474
Requirements:
@@ -493,12 +493,12 @@ Requirements:
493493
Attribute: ''RefractionIndex'',''1.2345E3''
494494
```
495495

496-
### Specifying a float when the value is an integer will fail
496+
### Specifying a float when the value is an integer is invalid
497497

498498
Note that the attribute name `NumberOfRiser` has been renamed to `NumberOfRisers` in IFC4
499499

500-
``` ids attribute/fail-specifying_a_float_when_the_value_is_an_integer_will_fail.ids
501-
Specifying a float when the value is an integer will fail
500+
``` ids attribute/invalid-specifying_a_float_when_the_value_is_an_integer_is_invalid.ids
501+
Specifying a float when the value is an integer is invalid
502502
IFC4
503503
Entity: ''IFCSTAIRFLIGHT''
504504
Requirements:
@@ -2066,31 +2066,31 @@ Requirements:
20662066
Property: ''Pset_WallCommon'',''Status'',IFCLABEL,''NEW''
20672067
```
20682068

2069-
### Booleans must be specified as uppercase strings 1/3
2069+
### Booleans must be specified as lowercase strings 1/3
20702070

2071-
``` ids property/fail-booleans_must_be_specified_as_uppercase_strings_1_3.ids
2072-
Booleans must be specified as uppercase strings 1/3
2071+
``` ids property/fail-booleans_must_be_specified_as_lowercase_strings_1_3.ids
2072+
Booleans must be specified as lowercase strings 1/3
20732073
Entity: ''IFCWALL''
20742074
Requirements:
2075-
Property: ''Foo_Bar'',''Foo'',IFCBOOLEAN,''TRUE''
2075+
Property: ''Foo_Bar'',''Foo'',IFCBOOLEAN,''true''
20762076
```
20772077

2078-
### Booleans must be specified as uppercase strings 2/3
2078+
### Booleans must be specified as lowercase strings 2/3
20792079

2080-
``` ids property/pass-booleans_must_be_specified_as_uppercase_strings_2_3.ids
2081-
Booleans must be specified as uppercase strings 2/3
2080+
``` ids property/pass-booleans_must_be_specified_as_lowercase_strings_2_3.ids
2081+
Booleans must be specified as lowercase strings 2/3
20822082
Entity: ''IFCWALL''
20832083
Requirements:
2084-
Property: ''Foo_Bar'',''Foo'',IFCBOOLEAN,''FALSE''
2084+
Property: ''Foo_Bar'',''Foo'',IFCBOOLEAN,''false''
20852085
```
20862086

2087-
### Booleans must be specified as uppercase strings 3/3
2087+
### Booleans must be specified as lowercase strings 3/3
20882088

2089-
``` ids property/fail-booleans_must_be_specified_as_uppercase_strings_3_3.ids
2090-
Booleans must be specified as uppercase strings 3/3
2089+
``` ids property/invalid-booleans_must_be_specified_as_lowercase_strings_3_3.ids
2090+
Booleans must be specified as lowercase strings 3/3
20912091
Entity: ''IFCWALL''
20922092
Requirements:
2093-
Property: ''Foo_Bar'',''Foo'',IFCBOOLEAN,''False''
2093+
Property: ''Foo_Bar'',''Foo'',IFCBOOLEAN,''FALSE''
20942094
```
20952095

20962096
### Complex properties are not supported 1/2
@@ -2246,27 +2246,27 @@ Requirements:
22462246
Property: ''Foo_Bar'',''Foo'',IFCINTEGER,''42''
22472247
```
22482248

2249-
### Integer values are checked using type casting 2/4
2249+
### Integer values cannot be stored with decimal 2/4
22502250

2251-
``` ids property/pass-integer_values_are_checked_using_type_casting_2_4.ids
2252-
Integer values are checked using type casting 2/4
2251+
``` ids property/invalid-integer_values_cannot_be_stored_with_decimal_2_4.ids
2252+
Integer values cannot be stored with decimal 2/4
22532253
Entity: ''IFCWALL''
22542254
Requirements:
22552255
Property: ''Foo_Bar'',''Foo'',IFCINTEGER,''42.''
22562256
```
22572257

2258-
### Integer values are checked using type casting 3/4
2258+
### Integer values cannot be stored with decimal 3/4
22592259

2260-
``` ids property/pass-integer_values_are_checked_using_type_casting_3_4.ids
2261-
Integer values are checked using type casting 3/4
2260+
``` ids property/invalid-integer_values_cannot_be_stored_with_decimal_3_4.ids
2261+
Integer values cannot be stored with decimal 3/4
22622262
Entity: ''IFCWALL''
22632263
Requirements:
22642264
Property: ''Foo_Bar'',''Foo'',IFCINTEGER,''42.0''
22652265
```
22662266

22672267
### Integer values are checked using type casting 4/4
22682268

2269-
``` ids property/fail-integer_values_are_checked_using_type_casting_4_4.ids
2269+
``` ids property/invalid-integer_values_are_checked_using_type_casting_4_4.ids
22702270
Integer values are checked using type casting 4/4
22712271
Entity: ''IFCWALL''
22722272
Requirements:
@@ -2302,7 +2302,7 @@ Property: ''Foo_Bar'',''Foo'',IFCLABEL,''♫Don'tÄrgerhôtelЊет''
23022302

23032303
### Only specifically formatted numbers are allowed 1/4
23042304

2305-
``` ids property/fail-only_specifically_formatted_numbers_are_allowed_1_4.ids
2305+
``` ids property/invalid-only_specifically_formatted_numbers_are_allowed_1_4.ids
23062306
Only specifically formatted numbers are allowed 1/4
23072307
Entity: ''IFCWALL''
23082308
Requirements:
@@ -2311,7 +2311,7 @@ Property: ''Foo_Bar'',''Foo'',IFCREAL,''42,3''
23112311

23122312
### Only specifically formatted numbers are allowed 2/4
23132313

2314-
``` ids property/fail-only_specifically_formatted_numbers_are_allowed_2_4.ids
2314+
``` ids property/invalid-only_specifically_formatted_numbers_are_allowed_2_4.ids
23152315
Only specifically formatted numbers are allowed 2/4
23162316
Entity: ''IFCWALL''
23172317
Requirements:

build/_build.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<ItemGroup>
1515
<PackageReference Include="Nuke.Common" Version="6.3.0" />
16-
<PackageReference Include="ids-tool.CommandLine" Version="1.0.73" />
16+
<PackageReference Include="ids-tool.CommandLine" Version="1.0.74" />
1717
<PackageDownload Include="dotnet-xscgen" Version="[2.1.1094]" />
1818
</ItemGroup>
1919

0 commit comments

Comments
 (0)