Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<MicrosoftBclAsyncInterfacesVersion>5.0.0</MicrosoftBclAsyncInterfacesVersion>
<MicrosoftWin32PrimitivesVersion>4.3.0</MicrosoftWin32PrimitivesVersion>
<MicrosoftWin32RegistryVersion>5.0.0</MicrosoftWin32RegistryVersion>
<StyleCopAnalyzersVersion>1.2.0-beta.304</StyleCopAnalyzersVersion>
<StyleCopAnalyzersVersion>1.2.0-beta.406</StyleCopAnalyzersVersion>
<SystemBuffersVersion>4.5.1</SystemBuffersVersion>
<SystemCollectionsVersion>4.3.0</SystemCollectionsVersion>
<SystemCollectionsImmutableVersion>5.0.0</SystemCollectionsImmutableVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ public static partial class JitInfo
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern long GetCompilationTimeInTicks(bool currentThread = false);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ public static partial class JitInfo

private static long GetCompilationTimeInTicks(bool currentThread = false) => 0;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ internal static IntPtr IDynamicCastableGetInterfaceImplementation(object instanc
return default;
}
}
}
}
2 changes: 1 addition & 1 deletion src/coreclr/scripts/genRuntimeEventSources.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def generateEventSources(manifestFullPath, intermediatesDirFullPath, runtimeFlav
decreaseTabLevel()
writeOutput(outputFile, "}\n")
decreaseTabLevel()
writeOutput(outputFile, "}")
writeOutput(outputFile, "}\n")

def main(argv):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ public enum NotFoundBehavior
ReturnNull,
ReturnResolutionFailure
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ public static (int ExitCode, string StdErr) RunCodesign(string args, string appH
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public static bool CheckHasDefaultValue(ParameterInfo parameter, out bool tryToG
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ internal unsafe partial class Sys
[GeneratedDllImport(Interop.Libraries.SystemNative, CharSet = CharSet.Ansi, EntryPoint = "SystemNative_GetEnv")]
internal static unsafe partial IntPtr GetEnv(string name);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ internal unsafe partial class Sys
[GeneratedDllImport(Interop.Libraries.SystemNative, EntryPoint = "SystemNative_FreeEnviron")]
internal static unsafe partial void FreeEnviron(IntPtr environ);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ internal enum CertControlStoreFlags : int
None = 0x00000000,
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ internal enum CertControlStoreType : int
CERT_STORE_CTRL_AUTO_RESYNC = 4,
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ public Task StartAsync(CancellationToken cancellationToken)

public Task StopAsync(CancellationToken cancellationToken) => Task.CompletedTask;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ public enum ActivityStatusCode
/// </summary>
Error = 2
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,4 @@ public void Dispose()
}
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ internal Counter(Meter meter, string name, string? unit, string? description) :
/// <param name="tagList">A <see cref="T:System.Diagnostics.TagList" /> of tags associated with the measurement.</param>
public void Add(T delta, in TagList tagList) => RecordMeasurement(delta, in tagList);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ internal Histogram(Meter meter, string name, string? unit, string? description)
/// <param name="tagList">A <see cref="T:System.Diagnostics.TagList" /> of tags associated with the measurement.</param>
public void Record(T value, in TagList tagList) => RecordMeasurement(value, in tagList);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ protected void RecordMeasurement(T measurement, ReadOnlySpan<KeyValuePair<string
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ protected void RecordMeasurement(T measurement, in TagList tagList)
RecordMeasurement(measurement, MemoryMarshal.CreateReadOnlySpan(ref Unsafe.AsRef(in tagList.Tag1), tagList.Count));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ internal ObservableCounter(Meter meter, string name, Func<IEnumerable<Measuremen
/// </summary>
protected override IEnumerable<Measurement<T>> Observe() => Observe(_callback);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ internal ObservableGauge(Meter meter, string name, Func<IEnumerable<Measurement<
/// </summary>
protected override IEnumerable<Measurement<T>> Observe() => Observe(_callback);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ internal ObservableUpDownCounter(Meter meter, string name, Func<IEnumerable<Meas
/// </summary>
protected override IEnumerable<Measurement<T>> Observe() => Observe(_callback);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -548,4 +548,4 @@ public bool MoveNext()
public void Reset() => _index = -1;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ internal UpDownCounter(Meter meter, string name, string? unit, string? descripti
/// <param name="tagList">A <see cref="T:System.Diagnostics.TagList" /> of tags associated with the measurement.</param>
public void Add(T delta, in TagList tagList) => RecordMeasurement(delta, in tagList);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static bool EnableUnixSupport
get => false;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,4 @@ private HttpMessageHandler CreateNativeHandler()
return (HttpMessageHandler)_nativeHandlerMethod!.Invoke(null, null)!;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ public static Task<HttpResponseMessage> SendWithNtConnectionAuthAsync(HttpReques
return InnerSendAsync(request, request.RequestUri, async, credentials, isProxyAuth: false, connection, connectionPool, cancellationToken);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ private static string GetIntPtrHex(SafeHandle handle)
return handle.DangerousGetHandle().ToString("X11");
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ internal static Exception GetStreamAbortedException(long errorCode)
};
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -365,4 +365,4 @@ private WebSocketState GetReadyState()
};
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ public static unsafe void Write(string s)
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,4 @@ private void ThrowNoInvokeException()
return retValue;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ public sealed class ObjectiveCTrackedTypeAttribute : Attribute
/// </summary>
public ObjectiveCTrackedTypeAttribute() { }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ public UnmanagedCallConvAttribute()
/// </remarks>
public Type[]? CallConvs;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ public static TimeSpan GetCompilationTime(bool currentThread = false)
return TimeSpan.FromTicks(GetCompilationTimeInTicks(currentThread));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -475,4 +475,4 @@ public byte[] GetTimeZoneData(string id)
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ private static int Reduce(Span<uint> bits, ReadOnlySpan<uint> modulus)
return bits.Length;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -850,4 +850,4 @@ public static explicit operator Complex(decimal value)
return new Complex((double)value, 0.0);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ private static DSA CreateCore()
return new DSAImplementation.DSAAndroid();
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ private static DSA CreateCore()
throw new PlatformNotSupportedException();
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ internal static ulong GetRuntimeCounterValue(RuntimeCounters counterID)
}
#endif
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ private static IntPtr CreateReferenceTrackingHandleInternal(
out int memInSizeT,
out IntPtr mem) => throw new NotImplementedException();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ private static long GetCompilationTimeInTicks(bool currentThread = false)
return currentThread ? 0 : (long)EventPipeInternal.GetRuntimeCounterValue(EventPipeInternal.RuntimeCounters.JIT_TICKS_IN_JIT);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,4 @@ private static void DebugThrowMissingOrIncorrectCode(string code, string message
private static bool IsAsciiDigit(char c)
=> c >= '0' && c <= '9';
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ internal static class MetadataKeys
public const string CreateCompositeImage = "CreateCompositeImage";
public const string PerfmapFormatVersion = "PerfmapFormatVersion";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -502,4 +502,4 @@ private static bool HasILCode(PEReader peReader, MetadataReader mdReader)
return false;
}
}
}
}
2 changes: 1 addition & 1 deletion src/tasks/Crossgen2Tasks/ResolveReadyToRunCompilers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -402,4 +402,4 @@ private static string ArchitectureToString(Architecture architecture)
};
}
}
}
}
2 changes: 1 addition & 1 deletion src/tasks/Crossgen2Tasks/RunReadyToRunCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -408,4 +408,4 @@ protected override void LogEventsFromTextOutput(string singleLine, MessageImport
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ public static bool HasMetadataValue(this ITaskItem item, string name, string exp
return string.Equals(value, expectedValue, StringComparison.OrdinalIgnoreCase);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ public static class Strings
public static string ReadyToRunNoValidRuntimePackageError = "ReadyToRunNoValidRuntimePackageError";
public static string ReadyToRunTargetNotSupportedError = "ReadyToRunTargetNotSupportedError";
}
}
}
2 changes: 1 addition & 1 deletion src/tasks/WorkloadBuildTasks/GenerateFileFromTemplate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,4 @@ public string Replace(string template, IDictionary<string, string> values)

return sb.ToString();
}
}
}