Dataset Viewer (First 5GB)
prompt
stringlengths 35
40.3M
| completion
stringlengths 142
40.3M
| repo
stringclasses 1
value | pr_number
int64 10
104k
| title
stringlengths 4
151
| body
stringlengths 0
40.4k
| created_at
stringdate 2019-11-02 12:27:25
2024-07-03 15:02:31
| closed_at
stringdate 2019-11-07 18:11:34
2025-04-01 13:02:47
β | merged_at
stringlengths 20
20
β | author
stringclasses 255
values | state
stringclasses 3
values | additions
int64 0
42.7k
| deletions
int64 0
37.5k
| changed_files
int64 0
1.46k
| head_ref
stringlengths 2
121
| labels
stringclasses 1
value | completion_commit
stringlengths 40
40
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Title: [master] Update dependencies from mono/linker
Body: This pull request updates the following dependencies
[marker]: <> (Begin:bcca1ed9-0939-490e-f02f-08d75d5208ed)
## From https://github.com/mono/linker
- **Build**: 20191106.1
- **Date Produced**: 11/6/2019 12:24 PM
- **Commit**: 0fb4605e96dbf9eb2cd4472eda32ab2bbe179484
- **Branch**: refs/heads/master
- **Updates**:
- **ILLink.Tasks** -> 0.1.6-prerelease.19556.1
[marker]: <> (End:bcca1ed9-0939-490e-f02f-08d75d5208ed)
Labels: nodes | Diff:
diff --git a/src/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/Conversion.vb b/src/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/Conversion.vb
index 790f4132930bcd..a4759e2350c0e5 100644
--- a/src/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/Conversion.vb
+++ b/src/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/Conversion.vb
@@ -163,7 +163,7 @@ Namespace Microsoft.VisualBasic
End If
- Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_NotNumericType2, "Number", Number.GetType().FullName)), vbErrors.TypeMismatch)
+ Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_NotNumericType2, NameOf(Number), Number.GetType().FullName)), vbErrors.TypeMismatch)
End Function
Public Function Int(ByVal Number As Short) As Short
@@ -192,7 +192,7 @@ Namespace Microsoft.VisualBasic
Public Function Int(ByVal Number As Object) As Object
If Number Is Nothing Then
- Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, "Number"))
+ Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, NameOf(Number)))
End If
Dim ValueInterface As IConvertible
@@ -236,7 +236,7 @@ Namespace Microsoft.VisualBasic
End Select
End If
- Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_NotNumericType2, "Number", Number.GetType().FullName)), vbErrors.TypeMismatch)
+ Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_NotNumericType2, NameOf(Number), Number.GetType().FullName)), vbErrors.TypeMismatch)
End Function
'============================================================================
@@ -282,7 +282,7 @@ Namespace Microsoft.VisualBasic
Dim LongValue As Long
If Number Is Nothing Then
- Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, "Number"))
+ Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, NameOf(Number)))
End If
Dim ValueInterface As IConvertible
@@ -355,7 +355,7 @@ RangeCheck:
End Select
End If
- Throw New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, "Number", VBFriendlyName(Number)))
+ Throw New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, NameOf(Number), VBFriendlyName(Number)))
End Function
<CLSCompliant(False)>
@@ -398,7 +398,7 @@ RangeCheck:
Dim LongValue As Long
If Number Is Nothing Then
- Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, "Number"))
+ Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, NameOf(Number)))
End If
Dim ValueInterface As IConvertible
@@ -466,14 +466,14 @@ RangeCheck:
End Select
End If
- Throw New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, "Number", VBFriendlyName(Number)))
+ Throw New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, NameOf(Number), VBFriendlyName(Number)))
End Function
Public Function Str(ByVal Number As Object) As String
Dim s As String
If Number Is Nothing Then
- Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, "Number"))
+ Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, NameOf(Number)))
End If
Dim ValueInterface As IConvertible
@@ -482,7 +482,7 @@ RangeCheck:
ValueInterface = TryCast(Number, IConvertible)
If ValueInterface Is Nothing Then
- Throw New InvalidCastException(GetResourceString(SR.ArgumentNotNumeric1, "Number"))
+ Throw New InvalidCastException(GetResourceString(SR.ArgumentNotNumeric1, NameOf(Number)))
End If
ValueTypeCode = ValueInterface.GetTypeCode()
@@ -526,7 +526,7 @@ RangeCheck:
'Throw our own exception below
End Try
End If
- Throw New InvalidCastException(GetResourceString(SR.ArgumentNotNumeric1, "Number"))
+ Throw New InvalidCastException(GetResourceString(SR.ArgumentNotNumeric1, NameOf(Number)))
End Select
FormatAndExit:
@@ -922,7 +922,7 @@ NextOctCharacter:
Catch ex As System.Threading.ThreadAbortException
Throw ex
Catch
- Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, "Expression", VBFriendlyName(Expression))), vbErrors.OLENoPropOrMethod)
+ Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, NameOf(Expression), VBFriendlyName(Expression))), vbErrors.OLENoPropOrMethod)
End Try
Return Val(sValue) | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | This pull request updates the following dependencies
[marker]: <> (Begin:bcca1ed9-0939-490e-f02f-08d75d5208ed)
## From https://github.com/mono/linker
- **Build**: 20191106.1
- **Date Produced**: 11/6/2019 12:24 PM
- **Commit**: 0fb4605e96dbf9eb2cd4472eda32ab2bbe179484
- **Branch**: refs/heads/master
- **Updates**:
- **ILLink.Tasks** -> 0.1.6-prerelease.19556.1
[marker]: <> (End:bcca1ed9-0939-490e-f02f-08d75d5208ed)
| 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | be6bcd6cd996cc8e0e003e15a645e4c2f32e5249 |
Title: [master] Update dependencies from mono/linker
Body: This pull request updates the following dependencies
[marker]: <> (Begin:bcca1ed9-0939-490e-f02f-08d75d5208ed)
## From https://github.com/mono/linker
- **Build**: 20191106.1
- **Date Produced**: 11/6/2019 12:24 PM
- **Commit**: 0fb4605e96dbf9eb2cd4472eda32ab2bbe179484
- **Branch**: refs/heads/master
- **Updates**:
- **ILLink.Tasks** -> 0.1.6-prerelease.19556.1
[marker]: <> (End:bcca1ed9-0939-490e-f02f-08d75d5208ed)
Labels: nodes
Last commit: Use NameOf in Conversion.vb (#42117)
Diff:
diff --git a/src/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/Conversion.vb b/src/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/Conversion.vb
index 790f4132930bcd..a4759e2350c0e5 100644
--- a/src/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/Conversion.vb
+++ b/src/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/Conversion.vb
@@ -163,7 +163,7 @@ Namespace Microsoft.VisualBasic
End If
- Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_NotNumericType2, "Number", Number.GetType().FullName)), vbErrors.TypeMismatch)
+ Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_NotNumericType2, NameOf(Number), Number.GetType().FullName)), vbErrors.TypeMismatch)
End Function
Public Function Int(ByVal Number As Short) As Short
@@ -192,7 +192,7 @@ Namespace Microsoft.VisualBasic
Public Function Int(ByVal Number As Object) As Object
If Number Is Nothing Then
- Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, "Number"))
+ Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, NameOf(Number)))
End If
Dim ValueInterface As IConvertible
@@ -236,7 +236,7 @@ Namespace Microsoft.VisualBasic
End Select
End If
- Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_NotNumericType2, "Number", Number.GetType().FullName)), vbErrors.TypeMismatch)
+ Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_NotNumericType2, NameOf(Number), Number.GetType().FullName)), vbErrors.TypeMismatch)
End Function
'============================================================================
@@ -282,7 +282,7 @@ Namespace Microsoft.VisualBasic
Dim LongValue As Long
If Number Is Nothing Then
- Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, "Number"))
+ Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, NameOf(Number)))
End If
Dim ValueInterface As IConvertible
@@ -355,7 +355,7 @@ RangeCheck:
End Select
End If
- Throw New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, "Number", VBFriendlyName(Number)))
+ Throw New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, NameOf(Number), VBFriendlyName(Number)))
End Function
<CLSCompliant(False)>
@@ -398,7 +398,7 @@ RangeCheck:
Dim LongValue As Long
If Number Is Nothing Then
- Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, "Number"))
+ Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, NameOf(Number)))
End If
Dim ValueInterface As IConvertible
@@ -466,14 +466,14 @@ RangeCheck:
End Select
End If
- Throw New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, "Number", VBFriendlyName(Number)))
+ Throw New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, NameOf(Number), VBFriendlyName(Number)))
End Function
Public Function Str(ByVal Number As Object) As String
Dim s As String
If Number Is Nothing Then
- Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, "Number"))
+ Throw New ArgumentNullException(GetResourceString(SR.Argument_InvalidNullValue1, NameOf(Number)))
End If
Dim ValueInterface As IConvertible
@@ -482,7 +482,7 @@ RangeCheck:
ValueInterface = TryCast(Number, IConvertible)
If ValueInterface Is Nothing Then
- Throw New InvalidCastException(GetResourceString(SR.ArgumentNotNumeric1, "Number"))
+ Throw New InvalidCastException(GetResourceString(SR.ArgumentNotNumeric1, NameOf(Number)))
End If
ValueTypeCode = ValueInterface.GetTypeCode()
@@ -526,7 +526,7 @@ RangeCheck:
'Throw our own exception below
End Try
End If
- Throw New InvalidCastException(GetResourceString(SR.ArgumentNotNumeric1, "Number"))
+ Throw New InvalidCastException(GetResourceString(SR.ArgumentNotNumeric1, NameOf(Number)))
End Select
FormatAndExit:
@@ -922,7 +922,7 @@ NextOctCharacter:
Catch ex As System.Threading.ThreadAbortException
Throw ex
Catch
- Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, "Expression", VBFriendlyName(Expression))), vbErrors.OLENoPropOrMethod)
+ Throw VbMakeException(New ArgumentException(GetResourceString(SR.Argument_InvalidValueType2, NameOf(Expression), VBFriendlyName(Expression))), vbErrors.OLENoPropOrMethod)
End Try
Return Val(sValue) | Diff:
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 470275893ecc28..52e4df7859e030 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -1,105 +1,105 @@
<?xml version="1.0" encoding="utf-8"?>
<Dependencies>
<ProductDependencies>
- <Dependency Name="Microsoft.NETCore.Platforms" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.NETCore.Platforms" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.NETCore.Targets" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.NETCore.Targets" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.Private.CoreFx.NETCoreApp" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.Private.CoreFx.NETCoreApp" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.Win32.Registry" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.Win32.Registry" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.Win32.SystemEvents" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.Win32.SystemEvents" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.Windows.Compatibility" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.Windows.Compatibility" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.CodeDom" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.CodeDom" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Configuration.ConfigurationManager" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Configuration.ConfigurationManager" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Diagnostics.EventLog" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Diagnostics.EventLog" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.DirectoryServices" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.DirectoryServices" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Drawing.Common" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Drawing.Common" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.IO.FileSystem.AccessControl" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.IO.FileSystem.AccessControl" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Resources.Extensions" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Resources.Extensions" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.IO.Packaging" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.IO.Packaging" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.AccessControl" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.AccessControl" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Cryptography.Cng" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Cryptography.Cng" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Cryptography.Pkcs" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Cryptography.Pkcs" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Cryptography.ProtectedData" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Cryptography.ProtectedData" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Cryptography.Xml" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Cryptography.Xml" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Permissions" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Permissions" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Principal.Windows" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Principal.Windows" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Text.Encodings.Web" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Text.Encodings.Web" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Text.Json" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Text.Json" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Threading.AccessControl" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Threading.AccessControl" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Windows.Extensions" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Windows.Extensions" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
<Dependency Name="NETStandard.Library" Version="2.2.0-prerelease.19525.1">
<Uri>https://github.com/dotnet/standard</Uri>
diff --git a/eng/Versions.props b/eng/Versions.props
index f3d778ba4d2eb0..d285c1249bd1d2 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -35,31 +35,31 @@
<!-- sourcelink -->
<MicrosoftSourceLinkVersion>1.0.0-beta2-19367-01</MicrosoftSourceLinkVersion>
<!-- corefx -->
- <MicrosoftNETCorePlatformsPackageVersion>5.0.0-alpha.1.19524.14</MicrosoftNETCorePlatformsPackageVersion>
- <MicrosoftNETCoreTargetsPackageVersion>5.0.0-alpha.1.19524.14</MicrosoftNETCoreTargetsPackageVersion>
- <MicrosoftPrivateCoreFxNETCoreAppPackageVersion>5.0.0-alpha.1.19524.14</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
- <MicrosoftWin32RegistryVersion>5.0.0-alpha.1.19524.14</MicrosoftWin32RegistryVersion>
- <MicrosoftWin32SystemEventsVersion>5.0.0-alpha.1.19524.14</MicrosoftWin32SystemEventsVersion>
- <MicrosoftWindowsCompatibilityPackageVersion>5.0.0-alpha.1.19524.14</MicrosoftWindowsCompatibilityPackageVersion>
- <SystemCodeDomVersion>5.0.0-alpha.1.19524.14</SystemCodeDomVersion>
- <SystemConfigurationConfigurationManagerVersion>5.0.0-alpha.1.19524.14</SystemConfigurationConfigurationManagerVersion>
- <SystemDiagnosticsEventLogVersion>5.0.0-alpha.1.19524.14</SystemDiagnosticsEventLogVersion>
- <SystemDirectoryServicesVersion>5.0.0-alpha.1.19524.14</SystemDirectoryServicesVersion>
- <SystemDrawingCommonVersion>5.0.0-alpha.1.19524.14</SystemDrawingCommonVersion>
- <SystemIOFileSystemAccessControlVersion>5.0.0-alpha.1.19524.14</SystemIOFileSystemAccessControlVersion>
- <SystemIOPackagingVersion>5.0.0-alpha.1.19524.14</SystemIOPackagingVersion>
- <SystemResourcesExtensionsPackageVersion>5.0.0-alpha.1.19524.14</SystemResourcesExtensionsPackageVersion>
- <SystemSecurityAccessControlVersion>5.0.0-alpha.1.19524.14</SystemSecurityAccessControlVersion>
- <SystemSecurityCryptographyCngVersion>5.0.0-alpha.1.19524.14</SystemSecurityCryptographyCngVersion>
- <SystemSecurityCryptographyPkcsVersion>5.0.0-alpha.1.19524.14</SystemSecurityCryptographyPkcsVersion>
- <SystemSecurityCryptographyProtectedDataVersion>5.0.0-alpha.1.19524.14</SystemSecurityCryptographyProtectedDataVersion>
- <SystemSecurityCryptographyXmlVersion>5.0.0-alpha.1.19524.14</SystemSecurityCryptographyXmlVersion>
- <SystemSecurityPermissionsVersion>5.0.0-alpha.1.19524.14</SystemSecurityPermissionsVersion>
- <SystemSecurityPrincipalWindowsVersion>5.0.0-alpha.1.19524.14</SystemSecurityPrincipalWindowsVersion>
- <SystemTextJsonVersion>5.0.0-alpha.1.19524.14</SystemTextJsonVersion>
- <SystemTextEncodingsWebVersion>5.0.0-alpha.1.19524.14</SystemTextEncodingsWebVersion>
- <SystemThreadingAccessControlVersion>5.0.0-alpha.1.19524.14</SystemThreadingAccessControlVersion>
- <SystemWindowsExtensionsPackageVersion>5.0.0-alpha.1.19524.14</SystemWindowsExtensionsPackageVersion>
+ <MicrosoftNETCorePlatformsPackageVersion>5.0.0-alpha.1.19525.1</MicrosoftNETCorePlatformsPackageVersion>
+ <MicrosoftNETCoreTargetsPackageVersion>5.0.0-alpha.1.19525.1</MicrosoftNETCoreTargetsPackageVersion>
+ <MicrosoftPrivateCoreFxNETCoreAppPackageVersion>5.0.0-alpha.1.19525.1</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
+ <MicrosoftWin32RegistryVersion>5.0.0-alpha.1.19525.1</MicrosoftWin32RegistryVersion>
+ <MicrosoftWin32SystemEventsVersion>5.0.0-alpha.1.19525.1</MicrosoftWin32SystemEventsVersion>
+ <MicrosoftWindowsCompatibilityPackageVersion>5.0.0-alpha.1.19525.1</MicrosoftWindowsCompatibilityPackageVersion>
+ <SystemCodeDomVersion>5.0.0-alpha.1.19525.1</SystemCodeDomVersion>
+ <SystemConfigurationConfigurationManagerVersion>5.0.0-alpha.1.19525.1</SystemConfigurationConfigurationManagerVersion>
+ <SystemDiagnosticsEventLogVersion>5.0.0-alpha.1.19525.1</SystemDiagnosticsEventLogVersion>
+ <SystemDirectoryServicesVersion>5.0.0-alpha.1.19525.1</SystemDirectoryServicesVersion>
+ <SystemDrawingCommonVersion>5.0.0-alpha.1.19525.1</SystemDrawingCommonVersion>
+ <SystemIOFileSystemAccessControlVersion>5.0.0-alpha.1.19525.1</SystemIOFileSystemAccessControlVersion>
+ <SystemIOPackagingVersion>5.0.0-alpha.1.19525.1</SystemIOPackagingVersion>
+ <SystemResourcesExtensionsPackageVersion>5.0.0-alpha.1.19525.1</SystemResourcesExtensionsPackageVersion>
+ <SystemSecurityAccessControlVersion>5.0.0-alpha.1.19525.1</SystemSecurityAccessControlVersion>
+ <SystemSecurityCryptographyCngVersion>5.0.0-alpha.1.19525.1</SystemSecurityCryptographyCngVersion>
+ <SystemSecurityCryptographyPkcsVersion>5.0.0-alpha.1.19525.1</SystemSecurityCryptographyPkcsVersion>
+ <SystemSecurityCryptographyProtectedDataVersion>5.0.0-alpha.1.19525.1</SystemSecurityCryptographyProtectedDataVersion>
+ <SystemSecurityCryptographyXmlVersion>5.0.0-alpha.1.19525.1</SystemSecurityCryptographyXmlVersion>
+ <SystemSecurityPermissionsVersion>5.0.0-alpha.1.19525.1</SystemSecurityPermissionsVersion>
+ <SystemSecurityPrincipalWindowsVersion>5.0.0-alpha.1.19525.1</SystemSecurityPrincipalWindowsVersion>
+ <SystemTextJsonVersion>5.0.0-alpha.1.19525.1</SystemTextJsonVersion>
+ <SystemTextEncodingsWebVersion>5.0.0-alpha.1.19525.1</SystemTextEncodingsWebVersion>
+ <SystemThreadingAccessControlVersion>5.0.0-alpha.1.19525.1</SystemThreadingAccessControlVersion>
+ <SystemWindowsExtensionsPackageVersion>5.0.0-alpha.1.19525.1</SystemWindowsExtensionsPackageVersion>
<!-- standard -->
<NETStandardLibraryPackageVersion>2.2.0-prerelease.19525.1</NETStandardLibraryPackageVersion>
<!-- coreclr --> | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | This pull request updates the following dependencies
[marker]: <> (Begin:bcca1ed9-0939-490e-f02f-08d75d5208ed)
## From https://github.com/mono/linker
- **Build**: 20191106.1
- **Date Produced**: 11/6/2019 12:24 PM
- **Commit**: 0fb4605e96dbf9eb2cd4472eda32ab2bbe179484
- **Branch**: refs/heads/master
- **Updates**:
- **ILLink.Tasks** -> 0.1.6-prerelease.19556.1
[marker]: <> (End:bcca1ed9-0939-490e-f02f-08d75d5208ed)
| 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | be32cb4c9e2045a3838e28f4a67d6b5a4b1fea3b |
Title: [master] Update dependencies from mono/linker
Body: This pull request updates the following dependencies
[marker]: <> (Begin:bcca1ed9-0939-490e-f02f-08d75d5208ed)
## From https://github.com/mono/linker
- **Build**: 20191106.1
- **Date Produced**: 11/6/2019 12:24 PM
- **Commit**: 0fb4605e96dbf9eb2cd4472eda32ab2bbe179484
- **Branch**: refs/heads/master
- **Updates**:
- **ILLink.Tasks** -> 0.1.6-prerelease.19556.1
[marker]: <> (End:bcca1ed9-0939-490e-f02f-08d75d5208ed)
Labels: nodes
Last commit: Update dependencies from https://github.com/dotnet/corefx build 20191025.1 (#8667)
- System.Windows.Extensions - 5.0.0-alpha.1.19525.1
- System.CodeDom - 5.0.0-alpha.1.19525.1
- System.Configuration.ConfigurationManager - 5.0.0-alpha.1.19525.1
- Microsoft.NETCore.Platforms - 5.0.0-alpha.1.19525.1
- Microsoft.NETCore.Targets - 5.0.0-alpha.1.19525.1
- Microsoft.Private.CoreFx.NETCoreApp - 5.0.0-alpha.1.19525.1
- Microsoft.Win32.Registry - 5.0.0-alpha.1.19525.1
- Microsoft.Win32.SystemEvents - 5.0.0-alpha.1.19525.1
- Microsoft.Windows.Compatibility - 5.0.0-alpha.1.19525.1
- System.Diagnostics.EventLog - 5.0.0-alpha.1.19525.1
- System.Security.AccessControl - 5.0.0-alpha.1.19525.1
- System.Security.Cryptography.Cng - 5.0.0-alpha.1.19525.1
- System.Security.Cryptography.Pkcs - 5.0.0-alpha.1.19525.1
- System.Security.Cryptography.ProtectedData - 5.0.0-alpha.1.19525.1
- System.Security.Cryptography.Xml - 5.0.0-alpha.1.19525.1
- System.Security.Permissions - 5.0.0-alpha.1.19525.1
- System.Security.Principal.Windows - 5.0.0-alpha.1.19525.1
- System.Text.Encodings.Web - 5.0.0-alpha.1.19525.1
- System.Text.Json - 5.0.0-alpha.1.19525.1
- System.Threading.AccessControl - 5.0.0-alpha.1.19525.1
- System.Resources.Extensions - 5.0.0-alpha.1.19525.1
- System.DirectoryServices - 5.0.0-alpha.1.19525.1
- System.Drawing.Common - 5.0.0-alpha.1.19525.1
- System.IO.FileSystem.AccessControl - 5.0.0-alpha.1.19525.1
- System.IO.Packaging - 5.0.0-alpha.1.19525.1
Diff:
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 470275893ecc28..52e4df7859e030 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -1,105 +1,105 @@
<?xml version="1.0" encoding="utf-8"?>
<Dependencies>
<ProductDependencies>
- <Dependency Name="Microsoft.NETCore.Platforms" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.NETCore.Platforms" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.NETCore.Targets" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.NETCore.Targets" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.Private.CoreFx.NETCoreApp" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.Private.CoreFx.NETCoreApp" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.Win32.Registry" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.Win32.Registry" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.Win32.SystemEvents" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.Win32.SystemEvents" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="Microsoft.Windows.Compatibility" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="Microsoft.Windows.Compatibility" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.CodeDom" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.CodeDom" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Configuration.ConfigurationManager" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Configuration.ConfigurationManager" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Diagnostics.EventLog" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Diagnostics.EventLog" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.DirectoryServices" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.DirectoryServices" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Drawing.Common" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Drawing.Common" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.IO.FileSystem.AccessControl" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.IO.FileSystem.AccessControl" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Resources.Extensions" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Resources.Extensions" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.IO.Packaging" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.IO.Packaging" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.AccessControl" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.AccessControl" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Cryptography.Cng" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Cryptography.Cng" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Cryptography.Pkcs" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Cryptography.Pkcs" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Cryptography.ProtectedData" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Cryptography.ProtectedData" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Cryptography.Xml" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Cryptography.Xml" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Permissions" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Permissions" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Security.Principal.Windows" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Security.Principal.Windows" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Text.Encodings.Web" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Text.Encodings.Web" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Text.Json" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Text.Json" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Threading.AccessControl" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Threading.AccessControl" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
- <Dependency Name="System.Windows.Extensions" Version="5.0.0-alpha.1.19524.14">
+ <Dependency Name="System.Windows.Extensions" Version="5.0.0-alpha.1.19525.1">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
+ <Sha>a04338f538abc58d4cd8a060e87f4d5c3885475b</Sha>
</Dependency>
<Dependency Name="NETStandard.Library" Version="2.2.0-prerelease.19525.1">
<Uri>https://github.com/dotnet/standard</Uri>
diff --git a/eng/Versions.props b/eng/Versions.props
index f3d778ba4d2eb0..d285c1249bd1d2 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -35,31 +35,31 @@
<!-- sourcelink -->
<MicrosoftSourceLinkVersion>1.0.0-beta2-19367-01</MicrosoftSourceLinkVersion>
<!-- corefx -->
- <MicrosoftNETCorePlatformsPackageVersion>5.0.0-alpha.1.19524.14</MicrosoftNETCorePlatformsPackageVersion>
- <MicrosoftNETCoreTargetsPackageVersion>5.0.0-alpha.1.19524.14</MicrosoftNETCoreTargetsPackageVersion>
- <MicrosoftPrivateCoreFxNETCoreAppPackageVersion>5.0.0-alpha.1.19524.14</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
- <MicrosoftWin32RegistryVersion>5.0.0-alpha.1.19524.14</MicrosoftWin32RegistryVersion>
- <MicrosoftWin32SystemEventsVersion>5.0.0-alpha.1.19524.14</MicrosoftWin32SystemEventsVersion>
- <MicrosoftWindowsCompatibilityPackageVersion>5.0.0-alpha.1.19524.14</MicrosoftWindowsCompatibilityPackageVersion>
- <SystemCodeDomVersion>5.0.0-alpha.1.19524.14</SystemCodeDomVersion>
- <SystemConfigurationConfigurationManagerVersion>5.0.0-alpha.1.19524.14</SystemConfigurationConfigurationManagerVersion>
- <SystemDiagnosticsEventLogVersion>5.0.0-alpha.1.19524.14</SystemDiagnosticsEventLogVersion>
- <SystemDirectoryServicesVersion>5.0.0-alpha.1.19524.14</SystemDirectoryServicesVersion>
- <SystemDrawingCommonVersion>5.0.0-alpha.1.19524.14</SystemDrawingCommonVersion>
- <SystemIOFileSystemAccessControlVersion>5.0.0-alpha.1.19524.14</SystemIOFileSystemAccessControlVersion>
- <SystemIOPackagingVersion>5.0.0-alpha.1.19524.14</SystemIOPackagingVersion>
- <SystemResourcesExtensionsPackageVersion>5.0.0-alpha.1.19524.14</SystemResourcesExtensionsPackageVersion>
- <SystemSecurityAccessControlVersion>5.0.0-alpha.1.19524.14</SystemSecurityAccessControlVersion>
- <SystemSecurityCryptographyCngVersion>5.0.0-alpha.1.19524.14</SystemSecurityCryptographyCngVersion>
- <SystemSecurityCryptographyPkcsVersion>5.0.0-alpha.1.19524.14</SystemSecurityCryptographyPkcsVersion>
- <SystemSecurityCryptographyProtectedDataVersion>5.0.0-alpha.1.19524.14</SystemSecurityCryptographyProtectedDataVersion>
- <SystemSecurityCryptographyXmlVersion>5.0.0-alpha.1.19524.14</SystemSecurityCryptographyXmlVersion>
- <SystemSecurityPermissionsVersion>5.0.0-alpha.1.19524.14</SystemSecurityPermissionsVersion>
- <SystemSecurityPrincipalWindowsVersion>5.0.0-alpha.1.19524.14</SystemSecurityPrincipalWindowsVersion>
- <SystemTextJsonVersion>5.0.0-alpha.1.19524.14</SystemTextJsonVersion>
- <SystemTextEncodingsWebVersion>5.0.0-alpha.1.19524.14</SystemTextEncodingsWebVersion>
- <SystemThreadingAccessControlVersion>5.0.0-alpha.1.19524.14</SystemThreadingAccessControlVersion>
- <SystemWindowsExtensionsPackageVersion>5.0.0-alpha.1.19524.14</SystemWindowsExtensionsPackageVersion>
+ <MicrosoftNETCorePlatformsPackageVersion>5.0.0-alpha.1.19525.1</MicrosoftNETCorePlatformsPackageVersion>
+ <MicrosoftNETCoreTargetsPackageVersion>5.0.0-alpha.1.19525.1</MicrosoftNETCoreTargetsPackageVersion>
+ <MicrosoftPrivateCoreFxNETCoreAppPackageVersion>5.0.0-alpha.1.19525.1</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
+ <MicrosoftWin32RegistryVersion>5.0.0-alpha.1.19525.1</MicrosoftWin32RegistryVersion>
+ <MicrosoftWin32SystemEventsVersion>5.0.0-alpha.1.19525.1</MicrosoftWin32SystemEventsVersion>
+ <MicrosoftWindowsCompatibilityPackageVersion>5.0.0-alpha.1.19525.1</MicrosoftWindowsCompatibilityPackageVersion>
+ <SystemCodeDomVersion>5.0.0-alpha.1.19525.1</SystemCodeDomVersion>
+ <SystemConfigurationConfigurationManagerVersion>5.0.0-alpha.1.19525.1</SystemConfigurationConfigurationManagerVersion>
+ <SystemDiagnosticsEventLogVersion>5.0.0-alpha.1.19525.1</SystemDiagnosticsEventLogVersion>
+ <SystemDirectoryServicesVersion>5.0.0-alpha.1.19525.1</SystemDirectoryServicesVersion>
+ <SystemDrawingCommonVersion>5.0.0-alpha.1.19525.1</SystemDrawingCommonVersion>
+ <SystemIOFileSystemAccessControlVersion>5.0.0-alpha.1.19525.1</SystemIOFileSystemAccessControlVersion>
+ <SystemIOPackagingVersion>5.0.0-alpha.1.19525.1</SystemIOPackagingVersion>
+ <SystemResourcesExtensionsPackageVersion>5.0.0-alpha.1.19525.1</SystemResourcesExtensionsPackageVersion>
+ <SystemSecurityAccessControlVersion>5.0.0-alpha.1.19525.1</SystemSecurityAccessControlVersion>
+ <SystemSecurityCryptographyCngVersion>5.0.0-alpha.1.19525.1</SystemSecurityCryptographyCngVersion>
+ <SystemSecurityCryptographyPkcsVersion>5.0.0-alpha.1.19525.1</SystemSecurityCryptographyPkcsVersion>
+ <SystemSecurityCryptographyProtectedDataVersion>5.0.0-alpha.1.19525.1</SystemSecurityCryptographyProtectedDataVersion>
+ <SystemSecurityCryptographyXmlVersion>5.0.0-alpha.1.19525.1</SystemSecurityCryptographyXmlVersion>
+ <SystemSecurityPermissionsVersion>5.0.0-alpha.1.19525.1</SystemSecurityPermissionsVersion>
+ <SystemSecurityPrincipalWindowsVersion>5.0.0-alpha.1.19525.1</SystemSecurityPrincipalWindowsVersion>
+ <SystemTextJsonVersion>5.0.0-alpha.1.19525.1</SystemTextJsonVersion>
+ <SystemTextEncodingsWebVersion>5.0.0-alpha.1.19525.1</SystemTextEncodingsWebVersion>
+ <SystemThreadingAccessControlVersion>5.0.0-alpha.1.19525.1</SystemThreadingAccessControlVersion>
+ <SystemWindowsExtensionsPackageVersion>5.0.0-alpha.1.19525.1</SystemWindowsExtensionsPackageVersion>
<!-- standard -->
<NETStandardLibraryPackageVersion>2.2.0-prerelease.19525.1</NETStandardLibraryPackageVersion>
<!-- coreclr --> | Diff:
diff --git a/src/tools/ReadyToRun.SuperIlc/ProcessRunner.cs b/src/tools/ReadyToRun.SuperIlc/ProcessRunner.cs
index 153aa982990da0..0a7b5b488e6412 100644
--- a/src/tools/ReadyToRun.SuperIlc/ProcessRunner.cs
+++ b/src/tools/ReadyToRun.SuperIlc/ProcessRunner.cs
@@ -226,8 +226,14 @@ private void CleanupProcess()
private void CleanupLogWriter()
{
TextWriter logWriter = _logWriter;
- _logWriter = null;
- logWriter?.Dispose();
+ if (logWriter != null)
+ {
+ lock (logWriter)
+ {
+ _logWriter = null;
+ logWriter.Dispose();
+ }
+ }
}
private void ExitEventHandler(object sender, EventArgs eventArgs)
@@ -254,7 +260,11 @@ private void StandardOutputEventHandler(object sender, DataReceivedEventArgs eve
{
lock (logWriter)
{
- logWriter.WriteLine(data);
+ if (_logWriter != null)
+ {
+ // The logWriter was not disposed yet
+ logWriter.WriteLine(data);
+ }
}
}
}
@@ -267,7 +277,11 @@ private void StandardErrorEventHandler(object sender, DataReceivedEventArgs even
{
lock (logWriter)
{
- logWriter.WriteLine(data);
+ if (_logWriter != null)
+ {
+ // The logWriter was not disposed yet
+ logWriter.WriteLine(data);
+ }
}
}
}
@@ -338,7 +352,6 @@ public bool IsAvailable(ref int progressIndex, ref int failureCount)
_processInfo.Finished = true;
_logWriter.Flush();
- _logWriter.Close();
CleanupLogWriter(); | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | This pull request updates the following dependencies
[marker]: <> (Begin:bcca1ed9-0939-490e-f02f-08d75d5208ed)
## From https://github.com/mono/linker
- **Build**: 20191106.1
- **Date Produced**: 11/6/2019 12:24 PM
- **Commit**: 0fb4605e96dbf9eb2cd4472eda32ab2bbe179484
- **Branch**: refs/heads/master
- **Updates**:
- **ILLink.Tasks** -> 0.1.6-prerelease.19556.1
[marker]: <> (End:bcca1ed9-0939-490e-f02f-08d75d5208ed)
| 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | 8ef3510dc8de2c45afd48f8ba55b606d8e6d0c0a |
Title: [master] Update dependencies from mono/linker
Body: This pull request updates the following dependencies
[marker]: <> (Begin:bcca1ed9-0939-490e-f02f-08d75d5208ed)
## From https://github.com/mono/linker
- **Build**: 20191106.1
- **Date Produced**: 11/6/2019 12:24 PM
- **Commit**: 0fb4605e96dbf9eb2cd4472eda32ab2bbe179484
- **Branch**: refs/heads/master
- **Updates**:
- **ILLink.Tasks** -> 0.1.6-prerelease.19556.1
[marker]: <> (End:bcca1ed9-0939-490e-f02f-08d75d5208ed)
Labels: nodes
Last commit: Fix race in SuperILC logger cleanup (#27414)
The StandardOutputEventHandler and StandardErrorEventHandler can race
with the CleanupLogWriter, resulting in an exception due to an attempt
to write to a disposed TextWriter.
This change fixes it.
Diff:
diff --git a/src/tools/ReadyToRun.SuperIlc/ProcessRunner.cs b/src/tools/ReadyToRun.SuperIlc/ProcessRunner.cs
index 153aa982990da0..0a7b5b488e6412 100644
--- a/src/tools/ReadyToRun.SuperIlc/ProcessRunner.cs
+++ b/src/tools/ReadyToRun.SuperIlc/ProcessRunner.cs
@@ -226,8 +226,14 @@ private void CleanupProcess()
private void CleanupLogWriter()
{
TextWriter logWriter = _logWriter;
- _logWriter = null;
- logWriter?.Dispose();
+ if (logWriter != null)
+ {
+ lock (logWriter)
+ {
+ _logWriter = null;
+ logWriter.Dispose();
+ }
+ }
}
private void ExitEventHandler(object sender, EventArgs eventArgs)
@@ -254,7 +260,11 @@ private void StandardOutputEventHandler(object sender, DataReceivedEventArgs eve
{
lock (logWriter)
{
- logWriter.WriteLine(data);
+ if (_logWriter != null)
+ {
+ // The logWriter was not disposed yet
+ logWriter.WriteLine(data);
+ }
}
}
}
@@ -267,7 +277,11 @@ private void StandardErrorEventHandler(object sender, DataReceivedEventArgs even
{
lock (logWriter)
{
- logWriter.WriteLine(data);
+ if (_logWriter != null)
+ {
+ // The logWriter was not disposed yet
+ logWriter.WriteLine(data);
+ }
}
}
}
@@ -338,7 +352,6 @@ public bool IsAvailable(ref int progressIndex, ref int failureCount)
_processInfo.Finished = true;
_logWriter.Flush();
- _logWriter.Close();
CleanupLogWriter(); | Diff:
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 73efb137831fc3..7257d8ed0c1ba5 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -14,33 +14,33 @@
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
- <Dependency Name="Microsoft.NETCore.App" Version="5.0.0-alpha1.19523.10">
+ <Dependency Name="Microsoft.NETCore.App" Version="5.0.0-alpha1.19524.4">
<Uri>https://github.com/dotnet/core-setup</Uri>
- <Sha>4b1103759bc91b46f9ecfe0c0d93a1742ef3c9ee</Sha>
+ <Sha>452fc211978be1672e98d811e9f97eeecf27a1c0</Sha>
</Dependency>
- <Dependency Name="Microsoft.NETCore.DotNetHost" Version="5.0.0-alpha1.19523.10">
+ <Dependency Name="Microsoft.NETCore.DotNetHost" Version="5.0.0-alpha1.19524.4">
<Uri>https://github.com/dotnet/core-setup</Uri>
- <Sha>4b1103759bc91b46f9ecfe0c0d93a1742ef3c9ee</Sha>
+ <Sha>452fc211978be1672e98d811e9f97eeecf27a1c0</Sha>
</Dependency>
- <Dependency Name="Microsoft.NETCore.DotNetHostPolicy" Version="5.0.0-alpha1.19523.10">
+ <Dependency Name="Microsoft.NETCore.DotNetHostPolicy" Version="5.0.0-alpha1.19524.4">
<Uri>https://github.com/dotnet/core-setup</Uri>
- <Sha>4b1103759bc91b46f9ecfe0c0d93a1742ef3c9ee</Sha>
+ <Sha>452fc211978be1672e98d811e9f97eeecf27a1c0</Sha>
</Dependency>
- <Dependency Name="Microsoft.NETCore.Platforms" Version="5.0.0-alpha1.19523.1">
+ <Dependency Name="Microsoft.NETCore.Platforms" Version="5.0.0-alpha.1.19524.14">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>b8cb521e83456bd81dc314c0625d6236d7955bd9</Sha>
+ <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
</Dependency>
- <Dependency Name="runtime.native.System.IO.Ports" Version="5.0.0-alpha1.19523.1">
+ <Dependency Name="runtime.native.System.IO.Ports" Version="5.0.0-alpha.1.19524.14">
<Uri>https://github.com/dotnet/corefx</Uri>
- <Sha>b8cb521e83456bd81dc314c0625d6236d7955bd9</Sha>
+ <Sha>0954a975f972546314bd3ac4eb6e0a6380a85701</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.19524.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>da545119ed327334c1d3577afd806c63eda7241c</Sha>
</Dependency>
- <Dependency Name="NETStandard.Library" Version="2.2.0-prerelease.19523.1">
+ <Dependency Name="NETStandard.Library" Version="2.2.0-prerelease.19524.1">
<Uri>https://github.com/dotnet/standard</Uri>
- <Sha>94d71fb0978e84895c36c8511e2d3707c265ac02</Sha>
+ <Sha>ffd868a559cf3a456fb2e9e5035e89fc792c2a45</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="5.0.0-beta.19524.2">
<Uri>https://github.com/dotnet/arcade</Uri>
diff --git a/eng/Versions.props b/eng/Versions.props
index 82eda9f2504b01..a8af7651168854 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -40,18 +40,18 @@
<MicrosoftDotNetBuildTasksFeedVersion>5.0.0-beta.19524.2</MicrosoftDotNetBuildTasksFeedVersion>
<MicrosoftDotNetVersionToolsTasksPackageVersion>5.0.0-beta.19524.2</MicrosoftDotNetVersionToolsTasksPackageVersion>
<!-- Core-setup dependencies -->
- <MicrosoftNETCoreAppPackageVersion>5.0.0-alpha1.19523.10</MicrosoftNETCoreAppPackageVersion>
- <MicrosoftNETCoreDotNetHostPackageVersion>5.0.0-alpha1.19523.10</MicrosoftNETCoreDotNetHostPackageVersion>
- <MicrosoftNETCoreDotNetHostPolicyPackageVersion>5.0.0-alpha1.19523.10</MicrosoftNETCoreDotNetHostPolicyPackageVersion>
+ <MicrosoftNETCoreAppPackageVersion>5.0.0-alpha1.19524.4</MicrosoftNETCoreAppPackageVersion>
+ <MicrosoftNETCoreDotNetHostPackageVersion>5.0.0-alpha1.19524.4</MicrosoftNETCoreDotNetHostPackageVersion>
+ <MicrosoftNETCoreDotNetHostPolicyPackageVersion>5.0.0-alpha1.19524.4</MicrosoftNETCoreDotNetHostPolicyPackageVersion>
<!-- Coreclr dependencies -->
<MicrosoftNETCoreILAsmPackageVersion>5.0.0-alpha1.19524.2</MicrosoftNETCoreILAsmPackageVersion>
<MicrosoftNETCoreRuntimeCoreCLRPackageVersion>5.0.0-alpha1.19524.2</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
<MicrosoftNETSdkILPackageVersion>5.0.0-alpha1.19524.2</MicrosoftNETSdkILPackageVersion>
<!-- Corefx dependencies -->
- <MicrosoftNETCorePlatformsPackageVersion>5.0.0-alpha1.19523.8</MicrosoftNETCorePlatformsPackageVersion>
- <runtimenativeSystemIOPortsPackageVersion>5.0.0-alpha1.19523.8</runtimenativeSystemIOPortsPackageVersion>
+ <MicrosoftNETCorePlatformsPackageVersion>5.0.0-alpha.1.19524.14</MicrosoftNETCorePlatformsPackageVersion>
+ <runtimenativeSystemIOPortsPackageVersion>5.0.0-alpha.1.19524.14</runtimenativeSystemIOPortsPackageVersion>
<!-- Standard dependencies -->
- <NETStandardLibraryPackageVersion>2.2.0-prerelease.19523.1</NETStandardLibraryPackageVersion>
+ <NETStandardLibraryPackageVersion>2.2.0-prerelease.19524.1</NETStandardLibraryPackageVersion>
<!-- dotnet-optimization dependencies -->
<optimizationwindows_ntx64IBCCoreFxPackageVersion>99.99.99-master-20190716.1</optimizationwindows_ntx64IBCCoreFxPackageVersion>
<!-- sni --> | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | This pull request updates the following dependencies
[marker]: <> (Begin:bcca1ed9-0939-490e-f02f-08d75d5208ed)
## From https://github.com/mono/linker
- **Build**: 20191106.1
- **Date Produced**: 11/6/2019 12:24 PM
- **Commit**: 0fb4605e96dbf9eb2cd4472eda32ab2bbe179484
- **Branch**: refs/heads/master
- **Updates**:
- **ILLink.Tasks** -> 0.1.6-prerelease.19556.1
[marker]: <> (End:bcca1ed9-0939-490e-f02f-08d75d5208ed)
| 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | e8eae47f0df37bb97e80800b1d062bffb6fdd5d0 |
"Title: [master] Update dependencies from mono/linker\nBody: This pull request updates the following(...TRUNCATED) | "Diff:\ndiff --git a/src/System.Linq.Parallel/ref/System.Linq.Parallel.cs b/src/System.Linq.Parallel(...TRUNCATED) | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | "This pull request updates the following dependencies\r\n\r\n[marker]: <> (Begin:bcca1ed9-0939-490e-(...TRUNCATED) | 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | 4a863a6232477c673f7a41aae656f5054f9dbc78 |
"Title: [master] Update dependencies from mono/linker\nBody: This pull request updates the following(...TRUNCATED) | "Diff:\ndiff --git a/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/AsyncTaskMeth(...TRUNCATED) | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | "This pull request updates the following dependencies\r\n\r\n[marker]: <> (Begin:bcca1ed9-0939-490e-(...TRUNCATED) | 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | ed525baf3af93ccbd1fc564126eb404173600a90 |
"Title: [master] Update dependencies from mono/linker\nBody: This pull request updates the following(...TRUNCATED) | "Diff:\ndiff --git a/src/gc/env/volatile.h b/src/gc/env/volatile.h\nindex 311e12663f5437..de613ad897(...TRUNCATED) | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | "This pull request updates the following dependencies\r\n\r\n[marker]: <> (Begin:bcca1ed9-0939-490e-(...TRUNCATED) | 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | c128dbacaac207364b01c2d16890031e5aab47a4 |
"Title: [master] Update dependencies from mono/linker\nBody: This pull request updates the following(...TRUNCATED) | "Diff:\ndiff --git a/src/jit/codegenarmarch.cpp b/src/jit/codegenarmarch.cpp\nindex 7659ab34483e66..(...TRUNCATED) | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | "This pull request updates the following dependencies\r\n\r\n[marker]: <> (Begin:bcca1ed9-0939-490e-(...TRUNCATED) | 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | 4d6fae3c42789f139e5a7c05207554bd76983780 |
"Title: [master] Update dependencies from mono/linker\nBody: This pull request updates the following(...TRUNCATED) | "Diff:\ndiff --git a/src/System.Data.SqlClient/src/System/Data/SqlClient/TdsParserHelperClasses.cs b(...TRUNCATED) | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | "This pull request updates the following dependencies\r\n\r\n[marker]: <> (Begin:bcca1ed9-0939-490e-(...TRUNCATED) | 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | d162452c75d4e63063f3441f9e746d752ed1173d |
"Title: [master] Update dependencies from mono/linker\nBody: This pull request updates the following(...TRUNCATED) | "Diff:\ndiff --git a/.azure-ci.yml b/.azure-ci.yml\nindex 79d370500b2757..cbbe053e478898 100644\n---(...TRUNCATED) | dotnet/runtime | 10 | [master] Update dependencies from mono/linker | "This pull request updates the following dependencies\r\n\r\n[marker]: <> (Begin:bcca1ed9-0939-490e-(...TRUNCATED) | 2019-11-02T12:27:25Z | 2019-11-07T18:11:34Z | null | dotnet-maestro | CLOSED | 3 | 3 | 2 | darc-master-d009a92f-1c2f-41d4-9ffe-ff04e759c0c7 | nodes | c57cba795a0e0a2905f6ce48009cde1d23cd7a19 |
End of preview. Expand
in Data Studio
.NET Runtime Fine-Tuning Data and Index
This directory contains data for fine-tuning models and building RAGs for the dotnet/runtime repository.
Overview
- data/: Contains all datasets and indexes.
- raw/sample/: Sample PRs and diffs collected from GitHub.
- raw_data.tar: Archive of collected PRs and diffs from GitHub.
- samples/: Json files with processed samples suitable for dataset generation.
- processed/: Parquet files for fine-tuning (e.g.,
train.parquet
,test.parquet
). - faiss/: Vector indexes for RAG workflows.
- scripts/: Python and nodejs scripts for crawling, processing, and indexing.
Data Structure
data/
βββ raw/
| βββ sample/
β β βββ prs/
β β βββ diffs/
β βββ raw_data.tar
βββ processed/
β βββ train.parquet
β βββ test.parquet
βββ faiss/
βββ index.faiss
βββ index.pkl
Generated dataset
PR is considered as a timeline with events. Input is PR metadata (title, description, label) and commit n-1, with all events between n-1 and n. Completion is n. It is possible to filter by time, label, authors, etc.
Scripts
See scripts/README.md for details on running the crawler, dataset generation, and RAG indexing.
PyTorch Dataset Example
from datasets import load_dataset
# Load Parquet train/test splits
train = load_dataset("parquet", data_files="data/processed/train.parquet", split="train")
test = load_dataset("parquet", data_files="data/processed/test.parquet", split="train")
RAG Vector Search Example
import faiss
import numpy as np
# Load FAISS index
index = faiss.read_index("data/faiss/index.faiss")
# Example query embedding (replace with your embedding)
query_embedding = ...
# Search
D, I = index.search(query_embedding.reshape(1, -1), k=5)
print("Top 5 similar PR indices:", I[0])
- Downloads last month
- 174