Skip to content

Commit 39e376b

Browse files
committed
Revert to old namespace style for CI
1 parent 021d7b2 commit 39e376b

File tree

13 files changed

+314
-301
lines changed

13 files changed

+314
-301
lines changed
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1-
namespace WindowsBuildIdentifier;
2-
3-
public class FileItem
1+
namespace WindowsBuildIdentifier
42
{
5-
public string[] Attributes;
3+
public class FileItem
4+
{
5+
public string[] Attributes;
66

7-
public string CreationTime;
7+
public string CreationTime;
88

9-
public Hash Hash;
10-
public string LastAccessTime;
11-
public string LastWriteTime;
12-
public string Location;
9+
public Hash Hash;
10+
public string LastAccessTime;
11+
public string LastWriteTime;
12+
public string Location;
1313

14-
public MetaData Metadata;
14+
public MetaData Metadata;
1515

16-
public string Size;
16+
public string Size;
1717

18-
public Version Version;
18+
public Version Version;
19+
}
1920
}

Windows Build Identifier/Hash.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
namespace WindowsBuildIdentifier;
2-
3-
public class Hash
1+
namespace WindowsBuildIdentifier
42
{
5-
public string Crc32;
6-
public string Md5;
7-
public string Sha1;
3+
public class Hash
4+
{
5+
public string Crc32;
6+
public string Md5;
7+
public string Sha1;
8+
}
89
}
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
namespace WindowsBuildIdentifier.Identification;
2-
3-
public enum BuildType
1+
namespace WindowsBuildIdentifier.Identification
42
{
5-
fre,
6-
chk
3+
public enum BuildType
4+
{
5+
fre,
6+
chk
7+
}
78
}
Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
namespace WindowsBuildIdentifier.Identification.InstalledImage;
2-
3-
internal class VersionInfo2
1+
namespace WindowsBuildIdentifier.Identification.InstalledImage
42
{
5-
public string[] LanguageCodes;
6-
public Licensing Licensing;
7-
public string Tag;
8-
public WindowsVersion Version;
3+
internal class VersionInfo2
4+
{
5+
public string[] LanguageCodes;
6+
public Licensing Licensing;
7+
public string Tag;
8+
public WindowsVersion Version;
9+
}
910
}
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
namespace WindowsBuildIdentifier.Identification;
2-
3-
public enum Licensing
1+
namespace WindowsBuildIdentifier.Identification
42
{
5-
Retail,
6-
OEM,
7-
Volume
3+
public enum Licensing
4+
{
5+
Retail,
6+
OEM,
7+
Volume
8+
}
89
}
Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
1-
namespace WindowsBuildIdentifier.Identification;
2-
3-
public enum MachineType : ushort
1+
namespace WindowsBuildIdentifier.Identification
42
{
5-
unknown = 0x0,
6-
axp = 0x184,
7-
am33 = 0x1d3,
8-
amd64 = 0x8664,
9-
arm = 0x1c0,
10-
arm64 = 0xaa64,
11-
woa = 0x1c4,
12-
ebc = 0xebc,
13-
x86 = 0x14c,
14-
ia64 = 0x200,
15-
m32r = 0x9041,
16-
mips16 = 0x266,
17-
mipsfpu = 0x366,
18-
mipsfpu16 = 0x466,
19-
powerpc = 0x1f0,
20-
powerpcfp = 0x1f1,
21-
r4000 = 0x166,
22-
sh3 = 0x1a2,
23-
sh3dsp = 0x1a3,
24-
sh4 = 0x1a6,
25-
sh5 = 0x1a8,
26-
thumb = 0x1c2,
27-
wcemipsv2 = 0x169,
28-
nec98 = 0xffff
3+
public enum MachineType : ushort
4+
{
5+
unknown = 0x0,
6+
axp = 0x184,
7+
am33 = 0x1d3,
8+
amd64 = 0x8664,
9+
arm = 0x1c0,
10+
arm64 = 0xaa64,
11+
woa = 0x1c4,
12+
ebc = 0xebc,
13+
x86 = 0x14c,
14+
ia64 = 0x200,
15+
m32r = 0x9041,
16+
mips16 = 0x266,
17+
mipsfpu = 0x366,
18+
mipsfpu16 = 0x466,
19+
powerpc = 0x1f0,
20+
powerpcfp = 0x1f1,
21+
r4000 = 0x166,
22+
sh3 = 0x1a2,
23+
sh3dsp = 0x1a3,
24+
sh4 = 0x1a6,
25+
sh5 = 0x1a8,
26+
thumb = 0x1c2,
27+
wcemipsv2 = 0x169,
28+
nec98 = 0xffff
29+
}
2930
}

0 commit comments

Comments
 (0)