Skip to content

Commit 14a5525

Browse files
Version 7.1.1: Added support for Linux on 32-bit ARM hardware (GitHub Issue #230); added support for .NET Standard 2.1 (GitHub Issue #151); added V8RuntimeConstraints.HeapExpansionMultiplier; fixed an intermittent crash related to V8 background tasks; updated API and build documentation. Tested with V8 8.9.255.20.
1 parent caf3c98 commit 14a5525

File tree

657 files changed

+12304
-2458
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

657 files changed

+12304
-2458
lines changed

ClearScript.NoV8.sln

+39
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,25 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.Windows", "NetC
3131
{2179ABA8-4D87-4CC7-B056-48F770FB446E} = {2179ABA8-4D87-4CC7-B056-48F770FB446E}
3232
EndProjectSection
3333
EndProject
34+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.Windows.Core", "NetCore\ClearScript.Windows.Core\ClearScript.Windows.Core.csproj", "{28502322-E600-4EFB-9EBD-205A67348EFB}"
35+
ProjectSection(ProjectDependencies) = postProject
36+
{E442B305-E001-462F-83E1-E3F804EF68C1} = {E442B305-E001-462F-83E1-E3F804EF68C1}
37+
EndProjectSection
38+
EndProject
39+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.Windows.Core", "NetFramework\ClearScript.Windows.Core\ClearScript.Windows.Core.csproj", "{E442B305-E001-462F-83E1-E3F804EF68C1}"
40+
EndProject
41+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".NET Standard", ".NET Standard", "{B5E62FAB-7AC9-469F-966A-AAC0FDEDDADB}"
42+
EndProject
43+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.Core", "NetStandard\ClearScript.Core\ClearScript.Core.csproj", "{7A0974E3-5931-487E-89C8-B9CD8C05412B}"
44+
ProjectSection(ProjectDependencies) = postProject
45+
{FFEB6BB8-A769-4676-8DEA-DB0BF8923D80} = {FFEB6BB8-A769-4676-8DEA-DB0BF8923D80}
46+
EndProjectSection
47+
EndProject
48+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.Windows.Core", "NetStandard\ClearScript.Windows.Core\ClearScript.Windows.Core.csproj", "{89A692D6-C52B-4A6D-9FFB-E72055D050E7}"
49+
ProjectSection(ProjectDependencies) = postProject
50+
{E442B305-E001-462F-83E1-E3F804EF68C1} = {E442B305-E001-462F-83E1-E3F804EF68C1}
51+
EndProjectSection
52+
EndProject
3453
Global
3554
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3655
Debug|Any CPU = Debug|Any CPU
@@ -53,6 +72,22 @@ Global
5372
{8D40DCCD-D812-4BF0-9BA2-116A3F127D2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
5473
{8D40DCCD-D812-4BF0-9BA2-116A3F127D2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
5574
{8D40DCCD-D812-4BF0-9BA2-116A3F127D2A}.Release|Any CPU.Build.0 = Release|Any CPU
75+
{28502322-E600-4EFB-9EBD-205A67348EFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
76+
{28502322-E600-4EFB-9EBD-205A67348EFB}.Debug|Any CPU.Build.0 = Debug|Any CPU
77+
{28502322-E600-4EFB-9EBD-205A67348EFB}.Release|Any CPU.ActiveCfg = Release|Any CPU
78+
{28502322-E600-4EFB-9EBD-205A67348EFB}.Release|Any CPU.Build.0 = Release|Any CPU
79+
{E442B305-E001-462F-83E1-E3F804EF68C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
80+
{E442B305-E001-462F-83E1-E3F804EF68C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
81+
{E442B305-E001-462F-83E1-E3F804EF68C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
82+
{E442B305-E001-462F-83E1-E3F804EF68C1}.Release|Any CPU.Build.0 = Release|Any CPU
83+
{7A0974E3-5931-487E-89C8-B9CD8C05412B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
84+
{7A0974E3-5931-487E-89C8-B9CD8C05412B}.Debug|Any CPU.Build.0 = Debug|Any CPU
85+
{7A0974E3-5931-487E-89C8-B9CD8C05412B}.Release|Any CPU.ActiveCfg = Release|Any CPU
86+
{7A0974E3-5931-487E-89C8-B9CD8C05412B}.Release|Any CPU.Build.0 = Release|Any CPU
87+
{89A692D6-C52B-4A6D-9FFB-E72055D050E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
88+
{89A692D6-C52B-4A6D-9FFB-E72055D050E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
89+
{89A692D6-C52B-4A6D-9FFB-E72055D050E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
90+
{89A692D6-C52B-4A6D-9FFB-E72055D050E7}.Release|Any CPU.Build.0 = Release|Any CPU
5691
EndGlobalSection
5792
GlobalSection(SolutionProperties) = preSolution
5893
HideSolutionNode = FALSE
@@ -62,6 +97,10 @@ Global
6297
{2179ABA8-4D87-4CC7-B056-48F770FB446E} = {184998F3-5DCC-4463-86CC-469C13A69BA7}
6398
{32DD8677-C243-48BF-8E81-01EA1C14C3E6} = {41FDE4BD-8E1F-406B-A959-C3B2AF52C2E0}
6499
{8D40DCCD-D812-4BF0-9BA2-116A3F127D2A} = {41FDE4BD-8E1F-406B-A959-C3B2AF52C2E0}
100+
{28502322-E600-4EFB-9EBD-205A67348EFB} = {41FDE4BD-8E1F-406B-A959-C3B2AF52C2E0}
101+
{E442B305-E001-462F-83E1-E3F804EF68C1} = {184998F3-5DCC-4463-86CC-469C13A69BA7}
102+
{7A0974E3-5931-487E-89C8-B9CD8C05412B} = {B5E62FAB-7AC9-469F-966A-AAC0FDEDDADB}
103+
{89A692D6-C52B-4A6D-9FFB-E72055D050E7} = {B5E62FAB-7AC9-469F-966A-AAC0FDEDDADB}
65104
EndGlobalSection
66105
GlobalSection(ExtensibilityGlobals) = postSolution
67106
SolutionGuid = {F006893F-7CAF-443A-8F72-CA3C29A1BABD}

ClearScript.NoV8.sln.DotSettings

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=JIT/@EntryIndexedValue">JIT</s:String>
2424
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=JS/@EntryIndexedValue">JS</s:String>
2525
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=LCID/@EntryIndexedValue">LCID</s:String>
26+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=OSX/@EntryIndexedValue">OSX</s:String>
2627
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=RTLD/@EntryIndexedValue">RTLD</s:String>
2728
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=URL/@EntryIndexedValue">URL</s:String>
2829
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=VB/@EntryIndexedValue">VB</s:String>

ClearScript.sln

+65
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,41 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.Windows.Core",
130130
EndProject
131131
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.Windows.Core", "NetFramework\ClearScript.Windows.Core\ClearScript.Windows.Core.csproj", "{5FF9CB8B-BC95-44AB-B254-CEB4ADF4A53A}"
132132
EndProject
133+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".NET Standard", ".NET Standard", "{3047C214-A12B-4C8B-AEED-021FAA0B4CD3}"
134+
EndProject
135+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.Core", "NetStandard\ClearScript.Core\ClearScript.Core.csproj", "{D757A0DB-AEBC-4D77-A187-A701B158D588}"
136+
ProjectSection(ProjectDependencies) = postProject
137+
{F1022C3F-AFBC-4F23-B4DE-C6C0742AEFF2} = {F1022C3F-AFBC-4F23-B4DE-C6C0742AEFF2}
138+
EndProjectSection
139+
EndProject
140+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.V8", "NetStandard\ClearScript.V8\ClearScript.V8.csproj", "{0DEC74E5-FF8A-4B61-B847-875BAD0AE781}"
141+
ProjectSection(ProjectDependencies) = postProject
142+
{59CC81A3-3D97-469A-9C8B-533F920085F1} = {59CC81A3-3D97-469A-9C8B-533F920085F1}
143+
EndProjectSection
144+
EndProject
145+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScript.Windows.Core", "NetStandard\ClearScript.Windows.Core\ClearScript.Windows.Core.csproj", "{6F6B59D0-6538-4D02-91D2-07D24DAFE39A}"
146+
ProjectSection(ProjectDependencies) = postProject
147+
{5FF9CB8B-BC95-44AB-B254-CEB4ADF4A53A} = {5FF9CB8B-BC95-44AB-B254-CEB4ADF4A53A}
148+
EndProjectSection
149+
EndProject
150+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScriptTest.NetStandard", "NetStandard\ClearScriptTest.NetStandard\ClearScriptTest.NetStandard.csproj", "{BF28C9F2-2935-4FDE-B812-977D601F9208}"
151+
ProjectSection(ProjectDependencies) = postProject
152+
{EDC7144E-FDA9-4CC7-B2CD-B5EBFD610A7D} = {EDC7144E-FDA9-4CC7-B2CD-B5EBFD610A7D}
153+
{497012BC-959C-43A0-90A6-156A35DF2F43} = {497012BC-959C-43A0-90A6-156A35DF2F43}
154+
{6F6B59D0-6538-4D02-91D2-07D24DAFE39A} = {6F6B59D0-6538-4D02-91D2-07D24DAFE39A}
155+
EndProjectSection
156+
EndProject
157+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScriptTest.NetStandard", "Unix\ClearScriptTest.NetStandard\ClearScriptTest.NetStandard.csproj", "{EF6090B9-7349-4868-9C43-D7D3F048C54F}"
158+
ProjectSection(ProjectDependencies) = postProject
159+
{EDC7144E-FDA9-4CC7-B2CD-B5EBFD610A7D} = {EDC7144E-FDA9-4CC7-B2CD-B5EBFD610A7D}
160+
{3CD8AB65-BA34-4BB9-862F-D31CE861560F} = {3CD8AB65-BA34-4BB9-862F-D31CE861560F}
161+
EndProjectSection
162+
EndProject
163+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClearScriptConsole", "NetStandard\ClearScriptConsole\ClearScriptConsole.csproj", "{C0E7BCAD-B4B3-4291-A87A-384D5F99C413}"
164+
ProjectSection(ProjectDependencies) = postProject
165+
{28980C99-77E7-4B62-8484-AF06C5745B8C} = {28980C99-77E7-4B62-8484-AF06C5745B8C}
166+
EndProjectSection
167+
EndProject
133168
Global
134169
GlobalSection(SolutionConfigurationPlatforms) = preSolution
135170
Debug|Any CPU = Debug|Any CPU
@@ -224,6 +259,30 @@ Global
224259
{5FF9CB8B-BC95-44AB-B254-CEB4ADF4A53A}.Debug|Any CPU.Build.0 = Debug|Any CPU
225260
{5FF9CB8B-BC95-44AB-B254-CEB4ADF4A53A}.Release|Any CPU.ActiveCfg = Release|Any CPU
226261
{5FF9CB8B-BC95-44AB-B254-CEB4ADF4A53A}.Release|Any CPU.Build.0 = Release|Any CPU
262+
{D757A0DB-AEBC-4D77-A187-A701B158D588}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
263+
{D757A0DB-AEBC-4D77-A187-A701B158D588}.Debug|Any CPU.Build.0 = Debug|Any CPU
264+
{D757A0DB-AEBC-4D77-A187-A701B158D588}.Release|Any CPU.ActiveCfg = Release|Any CPU
265+
{D757A0DB-AEBC-4D77-A187-A701B158D588}.Release|Any CPU.Build.0 = Release|Any CPU
266+
{0DEC74E5-FF8A-4B61-B847-875BAD0AE781}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
267+
{0DEC74E5-FF8A-4B61-B847-875BAD0AE781}.Debug|Any CPU.Build.0 = Debug|Any CPU
268+
{0DEC74E5-FF8A-4B61-B847-875BAD0AE781}.Release|Any CPU.ActiveCfg = Release|Any CPU
269+
{0DEC74E5-FF8A-4B61-B847-875BAD0AE781}.Release|Any CPU.Build.0 = Release|Any CPU
270+
{6F6B59D0-6538-4D02-91D2-07D24DAFE39A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
271+
{6F6B59D0-6538-4D02-91D2-07D24DAFE39A}.Debug|Any CPU.Build.0 = Debug|Any CPU
272+
{6F6B59D0-6538-4D02-91D2-07D24DAFE39A}.Release|Any CPU.ActiveCfg = Release|Any CPU
273+
{6F6B59D0-6538-4D02-91D2-07D24DAFE39A}.Release|Any CPU.Build.0 = Release|Any CPU
274+
{BF28C9F2-2935-4FDE-B812-977D601F9208}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
275+
{BF28C9F2-2935-4FDE-B812-977D601F9208}.Debug|Any CPU.Build.0 = Debug|Any CPU
276+
{BF28C9F2-2935-4FDE-B812-977D601F9208}.Release|Any CPU.ActiveCfg = Release|Any CPU
277+
{BF28C9F2-2935-4FDE-B812-977D601F9208}.Release|Any CPU.Build.0 = Release|Any CPU
278+
{EF6090B9-7349-4868-9C43-D7D3F048C54F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
279+
{EF6090B9-7349-4868-9C43-D7D3F048C54F}.Debug|Any CPU.Build.0 = Debug|Any CPU
280+
{EF6090B9-7349-4868-9C43-D7D3F048C54F}.Release|Any CPU.ActiveCfg = Release|Any CPU
281+
{EF6090B9-7349-4868-9C43-D7D3F048C54F}.Release|Any CPU.Build.0 = Release|Any CPU
282+
{C0E7BCAD-B4B3-4291-A87A-384D5F99C413}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
283+
{C0E7BCAD-B4B3-4291-A87A-384D5F99C413}.Debug|Any CPU.Build.0 = Debug|Any CPU
284+
{C0E7BCAD-B4B3-4291-A87A-384D5F99C413}.Release|Any CPU.ActiveCfg = Release|Any CPU
285+
{C0E7BCAD-B4B3-4291-A87A-384D5F99C413}.Release|Any CPU.Build.0 = Release|Any CPU
227286
EndGlobalSection
228287
GlobalSection(SolutionProperties) = preSolution
229288
HideSolutionNode = FALSE
@@ -251,6 +310,12 @@ Global
251310
{CF1FD52F-A933-48D9-92A4-A39565896A42} = {DAF9D89A-5A6E-4450-8DA5-DFD73F26DDF5}
252311
{B9C99091-E616-4DC2-A711-4DCDAC602E38} = {38987D23-2ED7-473A-9DE5-863E338EF18A}
253312
{5FF9CB8B-BC95-44AB-B254-CEB4ADF4A53A} = {526BA3EF-4E1D-48C1-9923-2485B63993EE}
313+
{D757A0DB-AEBC-4D77-A187-A701B158D588} = {3047C214-A12B-4C8B-AEED-021FAA0B4CD3}
314+
{0DEC74E5-FF8A-4B61-B847-875BAD0AE781} = {3047C214-A12B-4C8B-AEED-021FAA0B4CD3}
315+
{6F6B59D0-6538-4D02-91D2-07D24DAFE39A} = {3047C214-A12B-4C8B-AEED-021FAA0B4CD3}
316+
{BF28C9F2-2935-4FDE-B812-977D601F9208} = {3047C214-A12B-4C8B-AEED-021FAA0B4CD3}
317+
{EF6090B9-7349-4868-9C43-D7D3F048C54F} = {48C9730D-CA6C-47ED-B72C-DB9B6EE24D47}
318+
{C0E7BCAD-B4B3-4291-A87A-384D5F99C413} = {3047C214-A12B-4C8B-AEED-021FAA0B4CD3}
254319
EndGlobalSection
255320
GlobalSection(ExtensibilityGlobals) = postSolution
256321
SolutionGuid = {3BAF1393-35E4-45F1-AC56-4A22646B56E5}

ClearScript.sln.DotSettings

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=JIT/@EntryIndexedValue">JIT</s:String>
2424
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=JS/@EntryIndexedValue">JS</s:String>
2525
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=LCID/@EntryIndexedValue">LCID</s:String>
26+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=OSX/@EntryIndexedValue">OSX</s:String>
2627
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=RTLD/@EntryIndexedValue">RTLD</s:String>
2728
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=URL/@EntryIndexedValue">URL</s:String>
2829
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=VB/@EntryIndexedValue">VB</s:String>

ClearScript/Exports/VersionSymbols.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#pragma once
77

8-
#define CLEARSCRIPT_VERSION_STRING "7.1.0"
9-
#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 7,1,0
10-
#define CLEARSCRIPT_VERSION_STRING_INFORMATIONAL "7.1.0"
8+
#define CLEARSCRIPT_VERSION_STRING "7.1.1"
9+
#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 7,1,1
10+
#define CLEARSCRIPT_VERSION_STRING_INFORMATIONAL "7.1.1"
1111
#define CLEARSCRIPT_FILE_FLAGS 0L

ClearScript/Properties/AssemblyInfo.Core.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
[assembly: InternalsVisibleTo("ClearScriptTest")]
1919

2020
[assembly: ComVisible(false)]
21-
[assembly: AssemblyVersion("7.1.0")]
22-
[assembly: AssemblyFileVersion("7.1.0")]
23-
[assembly: AssemblyInformationalVersion("7.1.0")]
21+
[assembly: AssemblyVersion("7.1.1")]
22+
[assembly: AssemblyFileVersion("7.1.1")]
23+
[assembly: AssemblyInformationalVersion("7.1.1")]
2424

2525
namespace Microsoft.ClearScript.Properties
2626
{
2727
internal static class ClearScriptVersion
2828
{
29-
public const string Triad = "7.1.0";
30-
public const string Informational = "7.1.0";
29+
public const string Triad = "7.1.1";
30+
public const string Informational = "7.1.1";
3131
}
3232
}

ClearScript/Properties/AssemblyInfo.V8.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
[assembly: InternalsVisibleTo("ClearScriptTest")]
1616

1717
[assembly: ComVisible(false)]
18-
[assembly: AssemblyVersion("7.1.0")]
19-
[assembly: AssemblyFileVersion("7.1.0")]
20-
[assembly: AssemblyInformationalVersion("7.1.0")]
18+
[assembly: AssemblyVersion("7.1.1")]
19+
[assembly: AssemblyFileVersion("7.1.1")]
20+
[assembly: AssemblyInformationalVersion("7.1.1")]

ClearScript/Properties/AssemblyInfo.Windows.Core.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
[assembly: InternalsVisibleTo("ClearScriptTest")]
1717

1818
[assembly: ComVisible(false)]
19-
[assembly: AssemblyVersion("7.1.0")]
20-
[assembly: AssemblyFileVersion("7.1.0")]
21-
[assembly: AssemblyInformationalVersion("7.1.0")]
19+
[assembly: AssemblyVersion("7.1.1")]
20+
[assembly: AssemblyFileVersion("7.1.1")]
21+
[assembly: AssemblyInformationalVersion("7.1.1")]

ClearScript/Properties/AssemblyInfo.Windows.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
[assembly: InternalsVisibleTo("ClearScriptTest")]
1616

1717
[assembly: ComVisible(false)]
18-
[assembly: AssemblyVersion("7.1.0")]
19-
[assembly: AssemblyFileVersion("7.1.0")]
20-
[assembly: AssemblyInformationalVersion("7.1.0")]
18+
[assembly: AssemblyVersion("7.1.1")]
19+
[assembly: AssemblyFileVersion("7.1.1")]
20+
[assembly: AssemblyInformationalVersion("7.1.1")]

ClearScript/Util/MiscHelpers.cs

+17
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,13 @@ public static void QueueNativeCallback(INativeCallback callback)
456456
{
457457
Try(callback.Invoke);
458458
}
459+
460+
// The above code appears to be problematic on some .NET runtimes, intermittently
461+
// triggering premature finalization of the callback. That can lead to a crash if
462+
// the callback's finalizer ends up racing against its Dispose method. The call
463+
// below should prevent this condition in all cases.
464+
465+
GC.KeepAlive(callback);
459466
});
460467
}
461468

@@ -525,6 +532,16 @@ public static bool PlatformIsWindows()
525532
return RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
526533
}
527534

535+
public static bool PlatformIsLinux()
536+
{
537+
return RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
538+
}
539+
540+
public static bool PlatformIsOSX()
541+
{
542+
return RuntimeInformation.IsOSPlatform(OSPlatform.OSX);
543+
}
544+
528545
public static bool ProcessorArchitectureIsIntel()
529546
{
530547
switch (RuntimeInformation.ProcessArchitecture)

0 commit comments

Comments
 (0)