You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/BenchmarkDotNet/Exporters/Json/SimpleJson.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -353,7 +353,7 @@ public override string ToString()
353
353
/// <param name="binder">Provides information about the conversion operation. The binder.Type property provides the type to which the object must be converted. For example, for the statement (String)sampleObject in C# (CType(sampleObject, Type) in Visual Basic), where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Type returns the <see cref="T:System.String"/> type. The binder.Explicit property provides information about the kind of conversion that occurs. It returns true for explicit conversion and false for implicit conversion.</param>
354
354
/// <param name="result">The result of the type conversion operation.</param>
@@ -398,7 +398,7 @@ public override bool TryDeleteMember(DeleteMemberBinder binder)
398
398
/// <param name="indexes">The indexes that are used in the operation. For example, for the sampleObject[3] operation in C# (sampleObject(3) in Visual Basic), where sampleObject is derived from the DynamicObject class, <paramref name="indexes"/> is equal to 3.</param>
399
399
/// <param name="result">The result of the index operation.</param>
@@ -418,7 +418,7 @@ public override bool TryGetIndex(GetIndexBinder binder, object[] indexes, out ob
418
418
/// <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
419
419
/// <param name="result">The result of the get operation. For example, if the method is called for a property, you can assign the property value to <paramref name="result"/>.</param>
Copy file name to clipboardExpand all lines: src/BenchmarkDotNet/Toolchains/CustomCoreClr/CustomCoreClrToolchainBuilder.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ public CustomCoreClrToolchainBuilder UseCoreFxLocalBuild(string privateCoreFxNet
85
85
/// creates a toolchain which publishes self-contained app which references NuGet CoreFx build
86
86
/// </summary>
87
87
/// <param name="privateCoreFxNetCoreAppVersion">the version of Microsoft.Private.CoreFx.NETCoreApp which should be used. Example: "4.5.0-preview2-26307-0"</param>
88
-
/// <param name="nugetFeedUrl">ulr to NuGet CoreFX feed, The default is: "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json"</param>
88
+
/// <param name="nugetFeedUrl">url to NuGet CoreFX feed, The default is: "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json"</param>
if(diagnostic.Id!=MissingReferenceError||!diagnostic.GetMessage().Contains("You must add a reference to assembly"))
138
138
returndefault;
139
139
140
-
// there is no nice property which would expose the reference name, so we need to to some parsing..
140
+
// there is no nice property which would expose the reference name, so we need to some parsing..
141
141
// CS0012: The type 'ValueType' is defined in an assembly that is not referenced. You must add a reference to assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'
0 commit comments