repo_name stringclasses 6
values | pr_number int64 512 78.9k | pr_title stringlengths 3 144 | pr_description stringlengths 0 30.3k | author stringlengths 2 21 | date_created timestamp[ns, tz=UTC] | date_merged timestamp[ns, tz=UTC] | previous_commit stringlengths 40 40 | pr_commit stringlengths 40 40 | query stringlengths 17 30.4k | filepath stringlengths 9 210 | before_content stringlengths 0 112M | after_content stringlengths 0 112M | label int64 -1 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/ComTypes/IEnumString.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Runtime.InteropServices.ComTypes
{
[Guid("00000101-0000-0000-C000-000000000046")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[ComImport]
p... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Runtime.InteropServices.ComTypes
{
[Guid("00000101-0000-0000-C000-000000000046")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[ComImport]
p... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/tests/JIT/Regression/JitBlue/DevDiv_754566/test.cs | using System;
using System.Runtime.CompilerServices;
class Program
{
[MethodImpl(MethodImplOptions.NoInlining)]
public String Test(int val)
{
return ((Object) val).ToString();
}
static int Main(string[] args)
{
int exitStatus = -1;
Program p = new Program();
... | using System;
using System.Runtime.CompilerServices;
class Program
{
[MethodImpl(MethodImplOptions.NoInlining)]
public String Test(int val)
{
return ((Object) val).ToString();
}
static int Main(string[] args)
{
int exitStatus = -1;
Program p = new Program();
... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/tests/JIT/HardwareIntrinsics/General/Vector128/CreateScalar.UInt32.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/mono/mono/profiler/proftest-pinvokes.c | #include <config.h>
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WIN32
#define STDCALL __stdcall
#else
#define STDCALL
#endif
#if defined(WIN32) && defined (_MSC_VER)
#define LIBTEST_API __declspec(dllexport)
#elif defined(__GNUC__)
#define LIBTEST_API __attribute__ ((__visibility__ ("default"... | #include <config.h>
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WIN32
#define STDCALL __stdcall
#else
#define STDCALL
#endif
#if defined(WIN32) && defined (_MSC_VER)
#define LIBTEST_API __declspec(dllexport)
#elif defined(__GNUC__)
#define LIBTEST_API __attribute__ ((__visibility__ ("default"... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Private.Xml/tests/XmlSchema/TestFiles/TestData/import_v17_c.xsd | <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="ns-c"
xmlns="ns-c"
>
<xsd:complexType name="ct-C">
<xsd:sequence minOccurs="1">
<xsd:element name="a1" type="xsd:int" />
<xsd:element name="a2" type="xsd:int" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="e2" type="ct... | <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="ns-c"
xmlns="ns-c"
>
<xsd:complexType name="ct-C">
<xsd:sequence minOccurs="1">
<xsd:element name="a1" type="xsd:int" />
<xsd:element name="a2" type="xsd:int" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="e2" type="ct... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Net.Http/src/System/Net/Http/Headers/HttpHeaders.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using System.Runti... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using System.Runti... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/XsltScenarios/EXslt/out/datetime-add-duration.xml | <out>
<test1>P367DT2S</test1>
<test2>P92DT5H2M</test2>
<test3></test3>
<test4></test4>
</out> | <out>
<test1>P367DT2S</test1>
<test2>P92DT5H2M</test2>
<test3></test3>
<test4></test4>
</out> | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/tests/JIT/HardwareIntrinsics/General/Vector64/Divide.UInt64.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Dynamic.Runtime/tests/Dynamic.Declarations/Conformance.dynamic.declarations.localVariable.simple.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace ManagedTests.DynamicCSharp.Conformance.dynamic.declarations.localVariable.simple.declaration001.declaration001
{
public class Test
{
[Fact]
... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace ManagedTests.DynamicCSharp.Conformance.dynamic.declarations.localVariable.simple.declaration001.declaration001
{
public class Test
{
[Fact]
... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/XsltApi/fruits.xml | <?xml version='1.0'?>
<FruitRack>
<apple>
<color>Red</color>
<calories>50</calories>
</apple>
<orange>
<color>Orange</color>
<calories>25</calories>
</orange>
</FruitRack> | <?xml version='1.0'?>
<FruitRack>
<apple>
<color>Red</color>
<calories>50</calories>
</apple>
<orange>
<color>Orange</color>
<calories>25</calories>
</orange>
</FruitRack> | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Net.WebSockets.Client/System.Net.WebSockets.Client.sln | Microsoft Visual Studio Solution File, Format Version 12.00
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestUtilities", "..\Common\tests\TestUtilities\TestUtilities.csproj", "{B615DEB1-354C-4357-987A-BBA921E5A712}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Net.WebSockets.Client", ... | Microsoft Visual Studio Solution File, Format Version 12.00
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestUtilities", "..\Common\tests\TestUtilities\TestUtilities.csproj", "{B615DEB1-354C-4357-987A-BBA921E5A712}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Net.WebSockets.Client", ... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/tests/JIT/Regression/JitBlue/GitHub_23861/GitHub_23861.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Runtime.CompilerServices;
using System.Numerics;
namespace GitHub_23861
{
class Program
{
static int returnVal = 100;
static int M... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Runtime.CompilerServices;
using System.Numerics;
namespace GitHub_23861
{
class Program
{
static int returnVal = 100;
static int M... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Runtime.Extensions/tests/System/Environment.SetEnvironmentVariable.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Security;
using Microsoft.DotNet.RemoteExecutor;
using Xunit;
namespace System... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Security;
using Microsoft.DotNet.RemoteExecutor;
using Xunit;
namespace System... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/mono/mono/tests/appdomain-serialize-exception.cs | using System;
using System.Reflection;
using System.Runtime.Serialization;
public class UnserializableException : Exception
{
}
public class TestOutput : MarshalByRefObject
{
public void ThrowUnserializable ()
{
Console.WriteLine("Throwing Unserializable exception in AppDomain \"{0}\"", AppDomain.CurrentDomain.Fr... | using System;
using System.Reflection;
using System.Runtime.Serialization;
public class UnserializableException : Exception
{
}
public class TestOutput : MarshalByRefObject
{
public void ThrowUnserializable ()
{
Console.WriteLine("Throwing Unserializable exception in AppDomain \"{0}\"", AppDomain.CurrentDomain.Fr... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/coreclr/pal/src/libunwind/src/ptrace/_UPT_accessors.c | /* libunwind - a platform-independent unwind library
Copyright (C) 2003 Hewlett-Packard Co
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
This file is part of libunwind.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files... | /* libunwind - a platform-independent unwind library
Copyright (C) 2003 Hewlett-Packard Co
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
This file is part of libunwind.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/coreclr/System.Private.CoreLib/src/System/Type.CoreCLR.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using StackCrawlMark = System.Threading.StackC... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using StackCrawlMark = System.Threading.StackC... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Net.NameResolution/ref/System.Net.NameResolution.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Include="System.Net.NameResolution.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\System.Net.Primitives\... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Include="System.Net.NameResolution.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\System.Net.Primitives\... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/Common/tests/System/Security/Cryptography/AlgorithmImplementations/ECDiffieHellman/ECDiffieHellmanTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Security.Cryptography.Tests;
using Xunit;
using Test.Cryptography;
namespace System.Security.Cryptography.EcDiffieHellman.Tests
{
... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Security.Cryptography.Tests;
using Xunit;
using Test.Cryptography;
namespace System.Security.Cryptography.EcDiffieHellman.Tests
{
... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.props | <Project>
<PropertyGroup Condition="'$(TargetOS)' == 'Browser'">
<!-- handle different path to middleware in Helix -->
<_TestEchoMiddleware Condition="'$(ContinuousIntegrationBuild)' == 'true' and '$(OS)' == 'Windows_NT'">%HELIX_CORRELATION_PAYLOAD%/xharness/TestEchoMiddleware</_TestEchoMiddleware>
<_Test... | <Project>
<PropertyGroup Condition="'$(TargetOS)' == 'Browser'">
<!-- handle different path to middleware in Helix -->
<_TestEchoMiddleware Condition="'$(ContinuousIntegrationBuild)' == 'true' and '$(OS)' == 'Windows_NT'">%HELIX_CORRELATION_PAYLOAD%/xharness/TestEchoMiddleware</_TestEchoMiddleware>
<_Test... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Diagnostics.CodeAnalysis;
using System.Text;
namespace Microsoft.Extensions.Logging.Console
{
/// <summary>
/// Options for the built-in console l... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Diagnostics.CodeAnalysis;
using System.Text;
namespace Microsoft.Extensions.Logging.Console
{
/// <summary>
/// Options for the built-in console l... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest1420/Generated1420.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN ... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN ... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Net.HttpListener/tests/HttpListenerTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Net.Http;
using System.Net.Sockets;
using System.Security.Authentication.ExtendedProtection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
usi... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Net.Http;
using System.Net.Sockets;
using System.Security.Authentication.ExtendedProtection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
usi... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/NoMetadataBlockingPolicy.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Internal.TypeSystem;
using Internal.TypeSystem.Ecma;
namespace ILCompiler
{
/// <summary>
/// Represents a metadata blocking policy that doesn't block any metadata.
... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Internal.TypeSystem;
using Internal.TypeSystem.Ecma;
namespace ILCompiler
{
/// <summary>
/// Represents a metadata blocking policy that doesn't block any metadata.
... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/XsltApi/AddParameterFA2.xsl |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" />
<xsl:variable name="param1" select="'default global'"/>
<xsl:template match="/">
<xsl:call-template name="Test" />
</xsl:template>
<xsl:template name="Test">
<xsl:variable name=... |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" />
<xsl:variable name="param1" select="'default global'"/>
<xsl:template match="/">
<xsl:call-template name="Test" />
</xsl:template>
<xsl:template name="Test">
<xsl:variable name=... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/coreclr/inc/gcinfo.h | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ******************************************************************************
// WARNING!!!: These values are used by SOS in the diagnostics repo. Values should
// added or remov... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ******************************************************************************
// WARNING!!!: These values are used by SOS in the diagnostics repo. Values should
// added or remov... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/coreclr/pal/src/libunwind/tests/ia64-test-rbs-asm.S | /* libunwind - a platform-independent unwind library
Copyright (C) 2003 Hewlett-Packard Co
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
This file is part of libunwind.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"... | /* libunwind - a platform-independent unwind library
Copyright (C) 2003 Hewlett-Packard Co
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
This file is part of libunwind.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"... | -1 |
dotnet/runtime | 65,915 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer | Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the generator - this makes it so that invalid usage issues can't be missed.
Fixes https://github.co... | elinor-fung | 2022-02-26T01:42:58Z | 2022-03-01T00:57:47Z | b4c746b7712e887af066d66d1ec777be6283f6f9 | d9eafd0c55ff7c3d7804c7629baf271703df91a6 | Move diagnostics for invalid `GeneratedDllImportAttribute` usage to generator instead of analyzer. Make the generator emit a diagnostic for any methods marked `GeneratedDllImport` that it is going to ignore. We had diagnostics in a separate analyzer (in the same DLL), but that could be turned off independently from the... | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest527/Generated527.ilproj | <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Generated527.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestFramework\TestFramework.csproj" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Generated527.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestFramework\TestFramework.csproj" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/coreclr/tools/ILVerification/ILVerifyTypeSystemContext.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
using Internal... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
using Internal... | 1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/coreclr/tools/ILVerification/IResolver.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.PortableExecutable;
namespace ILVerify
{
public interface IResolver
{
/// <summary... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.PortableExecutable;
namespace ILVerify
{
public interface IResolver
{
/// <summary... | 1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/coreclr/tools/ILVerification/Verifier.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.Port... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.Port... | 1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/coreclr/tools/ILVerify/Program.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.IO;
using System.Linq;
using System.Reflection;
using Syst... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.IO;
using System.Linq;
using System.Reflection;
using Syst... | 1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/ilverify/TestDataLoader.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.Metadata.Ecma335;
using System.Ref... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.Metadata.Ecma335;
using System.Ref... | 1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Text.Encoding/tests/UnicodeEncoding/UnicodeEncodingGetMaxByteCount.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.Text.Tests
{
public class UnicodeEncodingGetMaxByteCount
{
[Theory]
[InlineData(0)]
[InlineData(1)]
[InlineData... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.Text.Tests
{
public class UnicodeEncodingGetMaxByteCount
{
[Theory]
[InlineData(0)]
[InlineData(1)]
[InlineData... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Data.Common/src/System/Data/SQLTypes/INullable.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Data.SqlTypes
{
public interface INullable
{
bool IsNull { get; }
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Data.SqlTypes
{
public interface INullable
{
bool IsNull { get; }
}
}
| -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/HardwareIntrinsics/Arm/Rdm/MultiplyRoundedDoublingAndSubtractSaturateHigh.Vector128.Int16.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/Common/src/Interop/Windows/WebSocket/Interop.Structs.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Net.WebSockets;
using System.Runtime.InteropServices;
internal static partial class Interop
{
internal static partial class WebSocket
{
[S... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Net.WebSockets;
using System.Runtime.InteropServices;
internal static partial class Interop
{
internal static partial class WebSocket
{
[S... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Text.Json/src/System/Text/Json/Serialization/JsonSerializer.Write.Helpers.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using System.Text.Json.Serialization;
using System.Text.Json.Serialization.Metadata;
namespace System.Text.Json
{
public static partial class JsonSeria... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using System.Text.Json.Serialization;
using System.Text.Json.Serialization.Metadata;
namespace System.Text.Json
{
public static partial class JsonSeria... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/Regression/JitBlue/GitHub_13910/GitHub_13910.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Runtime.InteropServices;
// Represents a problem with contained nodes chains, that contain lclVar reads, that were moved through lclVar stores.
// Notice t... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Runtime.InteropServices;
// Represents a problem with contained nodes chains, that contain lclVar reads, that were moved through lclVar stores.
// Notice t... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/mono/mono/mini/basic-calls.cs | using System;
using System.Reflection;
/*
* Regression tests for the mono JIT.
*
* Each test needs to be of the form:
*
* public static int test_<result>_<name> ();
*
* where <result> is an integer (the value that needs to be returned by
* the method to make it pass.
* <name> is a user-displayed name used to ... | using System;
using System.Reflection;
/*
* Regression tests for the mono JIT.
*
* Each test needs to be of the form:
*
* public static int test_<result>_<name> ();
*
* where <result> is an integer (the value that needs to be returned by
* the method to make it pass.
* <name> is a user-displayed name used to ... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.ComponentModel.Composition/tests/System/ComponentModel/Composition/CatalogExtensionsTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.ComponentModel.Composition.Hosting;
using Xunit;
namespace System.ComponentModel.Composition
{
public class CatalogExtensionsTests
{
[Fact]
publ... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.ComponentModel.Composition.Hosting;
using Xunit;
namespace System.ComponentModel.Composition
{
public class CatalogExtensionsTests
{
[Fact]
publ... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/HardwareIntrinsics/X86/Avx2/InsertVector128.Byte.1.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Text.Encoding/tests/UTF7Encoding/UTF7EncodingTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using Xunit;
namespace System.Text.Tests
{
public class UTF7EncodingTests
{
[Fact]
public void Ctor_Empty()
{
... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using Xunit;
namespace System.Text.Tests
{
public class UTF7EncodingTests
{
[Fact]
public void Ctor_Empty()
{
... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/coreclr/nativeaot/System.Private.StackTraceMetadata/src/Internal/StackTraceMetadata/StackTraceMetadata.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using Internal.Metadata.NativeFormat;
using Internal.Runtime;
using Internal.Runtime.Augments;
using Internal.Runtime.TypeLoader;
usi... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using Internal.Metadata.NativeFormat;
using Internal.Runtime;
using Internal.Runtime.Augments;
using Internal.Runtime.TypeLoader;
usi... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Dynamic.Runtime/tests/Dynamic.Statements/Conformance.dynamic.statements.foreach.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace ManagedTests.DynamicCSharp.Conformance.dynamic.statements.freach.freach001.freach001
{
// <Title> Dynamic in Foreach </Title>
// <Description>
// ... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace ManagedTests.DynamicCSharp.Conformance.dynamic.statements.freach.freach001.freach001
{
// <Title> Dynamic in Foreach </Title>
// <Description>
// ... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/Loader/classloader/regressions/vsw531159/repro.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
public class Gen<U>
{
public void Meth<T>(T t) where T : struct, U {}
}
public class Test_repro
{
public static int Main()
{
try
{
Gen<System.ValueType> g1 ... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
public class Gen<U>
{
public void Meth<T>(T t) where T : struct, U {}
}
public class Test_repro
{
public static int Main()
{
try
{
Gen<System.ValueType> g1 ... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Drawing.Common/src/System/Drawing/SystemPens.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using Gdip = System.Drawing.SafeNativeMethods.Gdip;
namespace System.Drawing
{
public static class SystemPens
{
private static readonly obj... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using Gdip = System.Drawing.SafeNativeMethods.Gdip;
namespace System.Drawing
{
public static class SystemPens
{
private static readonly obj... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd/FusedSubtractHalving.Vector128.UInt16.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Text.Json/tests/System.Text.Json.Tests/Serialization/NodeInteropTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Text.Json.Serialization.Tests
{
public sealed partial class NodeInteropTestsDynamic : NodeInteropTests
{
public NodeInteropTestsDynamic() : base(Jso... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Text.Json.Serialization.Tests
{
public sealed partial class NodeInteropTestsDynamic : NodeInteropTests
{
public NodeInteropTestsDynamic() : base(Jso... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusFlags.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Drawing.Imaging
{
/**
* EMF+ Flags
*/
internal enum EmfPlusFlags
{
Display = 0x00000001,
NonDualGdi = 0x00000002
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Drawing.Imaging
{
/**
* EMF+ Flags
*/
internal enum EmfPlusFlags
{
Display = 0x00000001,
NonDualGdi = 0x00000002
}
}
| -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/Common/src/Interop/Windows/Kernel32/Interop.GetEnvironmentStrings.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.InteropServices;
internal static partial class Interop
{
internal static partial class Kernel32
{
[GeneratedDllImport(Libraries.Kernel32)]
... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.InteropServices;
internal static partial class Interop
{
internal static partial class Kernel32
{
[GeneratedDllImport(Libraries.Kernel32)]
... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Collections.Immutable/tests/ImmutableSortedDictionaryTest.nonnetstandard.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using Xunit;
namespac... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using Xunit;
namespac... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.IO.Pipelines/tests/SequencePipeReaderTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Buffers;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
namespace System.IO.Pipelines... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Buffers;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
namespace System.IO.Pipelines... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Query.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Xml;
using System.Xml.XPath;
using System.Xml.Xsl;
name... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Xml;
using System.Xml.XPath;
using System.Xml.Xsl;
name... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Linq.Expressions/src/System/Linq/Expressions/Expression.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Dynamic.Utils;
using System.Globalization;
using System.Reflection;
usi... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Dynamic.Utils;
using System.Globalization;
using System.Reflection;
usi... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/HardwareIntrinsics/General/Vector128/CreateVector.Int64.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd/BitwiseClear.Vector64.UInt16.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.ComponentModel.Composition/tests/System/ComponentModel/Composition/PartCreationPolicyAttributeTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.ComponentModel.Composition
{
public class PartCreationPolicyAttributeTests
{
[Fact]
public void Constructor_ShouldSetCreationPo... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.ComponentModel.Composition
{
public class PartCreationPolicyAttributeTests
{
[Fact]
public void Constructor_ShouldSetCreationPo... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/Common/src/Interop/Windows/Kernel32/Interop.HandleOptions.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
internal static partial class Interop
{
internal static partial class Kernel32
{
internal static partial class HandleOptions
{
internal const int ... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
internal static partial class Interop
{
internal static partial class Kernel32
{
internal static partial class HandleOptions
{
internal const int ... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/FeatureSettings.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Xml.XPath;
using ILLink.Shared;
using Internal.TypeSystem;
namespace ILCompiler
{
public static class FeatureSetting... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Xml.XPath;
using ILLink.Shared;
using Internal.TypeSystem;
namespace ILCompiler
{
public static class FeatureSetting... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Net.HttpListener/src/System/Net/Windows/WebSockets/WebSocketBuffer.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
namespace System.Net.WebSockets
{
// This ... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
namespace System.Net.WebSockets
{
// This ... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.Windows.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.InteropServices;
using Gdip = System.Drawing.SafeNativeMethods.Gdip;
namespace System.Drawing.Drawing2D
{
public partial class CustomLineCap
{
i... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.InteropServices;
using Gdip = System.Drawing.SafeNativeMethods.Gdip;
namespace System.Drawing.Drawing2D
{
public partial class CustomLineCap
{
i... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Private.CoreLib/src/System/IO/FileShare.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.IO
{
// Contains constants for controlling file sharing options while
// opening files. You can specify what access other processes trying
// to open th... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.IO
{
// Contains constants for controlling file sharing options while
// opening files. You can specify what access other processes trying
// to open th... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/ilverify/ILTests/FieldTests.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Runtime
{
}
.assembly FieldTests
{
}
.class private auto ansi beforefieldinit ConstrainedClass`1<([System.Runtime]System.Collections.IEnumerable) T>
ext... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Runtime
{
}
.assembly FieldTests
{
}
.class private auto ansi beforefieldinit ConstrainedClass`1<([System.Runtime]System.Collections.IEnumerable) T>
ext... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/reflection/Modifiers/modifiers.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="modifiers.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="modifiersdata.ilproj" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="modifiers.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="modifiersdata.ilproj" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/Common/tests/System/Net/Prerequisites/Servers/CoreFxNetCloudService/WebServer/WebSocket/EchoWebSocket.ashx | <%@ WebHandler Language="C#" CodeBehind="EchoWebSocket.ashx.cs" Class="WebServer.EchoWebSocket" %>
| <%@ WebHandler Language="C#" CodeBehind="EchoWebSocket.ashx.cs" Class="WebServer.EchoWebSocket" %>
| -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/coreclr/pal/tests/palsuite/c_runtime/fmod/test1/test1.cpp | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*=============================================================================
**
** Source: test1.c
**
** Purpose: Test to ensure that fmod return the correct values
**
** Depende... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*=============================================================================
**
** Source: test1.c
**
** Purpose: Test to ensure that fmod return the correct values
**
** Depende... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest1381/Generated1381.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN ... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN ... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Security.Permissions
{
#if NET5_0_OR_GREATER
[Obsolete(Obsoletions.CodeAccessSecurityMessage, DiagnosticId = Obsoletions.CodeAccessSecurityDiagId, UrlFormat = Ob... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Security.Permissions
{
#if NET5_0_OR_GREATER
[Obsolete(Obsoletions.CodeAccessSecurityMessage, DiagnosticId = Obsoletions.CodeAccessSecurityDiagId, UrlFormat = Ob... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Security.Cryptography/src/System/Security/Cryptography/UniversalCryptoEncryptor.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Diagnostics;
using System.Security.Cryptography;
using Internal.Cryptography;
namespace System.Security.Cryptography
{
//
// A cross-platform ICry... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Diagnostics;
using System.Security.Cryptography;
using Internal.Cryptography;
namespace System.Security.Cryptography
{
//
// A cross-platform ICry... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest869/Generated869.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN ... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN ... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/Common/tests/System/Net/Prerequisites/RemoteLoopServer/Program.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
namespace RemoteLoopServer
{
public class Program
{
public static void Main(string[] args)
... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
namespace RemoteLoopServer
{
public class Program
{
public static void Main(string[] args)
... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/coreclr/nativeaot/System.Private.CoreLib/src/System/Environment.CoreRT.Win32.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
namespace System
{
public static partial class Environment
{
[DoesNotReturn]
pri... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
namespace System
{
public static partial class Environment
{
[DoesNotReturn]
pri... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/GC/Scenarios/FinalNStruct/finalnstruct.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//***************************************************************************/
//* Test: FinalNStruct
//* Coverage: 1. check if GC can collect NStruct memeory (externally_allocat... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//***************************************************************************/
//* Test: FinalNStruct
//* Coverage: 1. check if GC can collect NStruct memeory (externally_allocat... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b39397/b39397.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'b39397' {}
.assembly extern x... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'b39397' {}
.assembly extern x... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/mono/mono/eglib/gmodule-win32.c | /*
* gmodule.c: dl* functions, glib style
*
* Author:
* Gonzalo Paniagua Javier (gonzalo@novell.com)
* Jonathan Chambers (joncham@gmail.com)
* Robert Jordan (robertj@gmx.net)
*
* (C) 2006 Novell, Inc.
* (C) 2006 Jonathan Chambers
*
* Permission is hereby granted, free of charge, to any person obtaining... | /*
* gmodule.c: dl* functions, glib style
*
* Author:
* Gonzalo Paniagua Javier (gonzalo@novell.com)
* Jonathan Chambers (joncham@gmail.com)
* Robert Jordan (robertj@gmx.net)
*
* (C) 2006 Novell, Inc.
* (C) 2006 Jonathan Chambers
*
* Permission is hereby granted, free of charge, to any person obtaining... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Text.RegularExpressions/tests/FunctionalTests/MatchCollectionTests2.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using Xunit;
namespace System.Text.RegularExpressio... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using Xunit;
namespace System.Text.RegularExpressio... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Utils.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Text;
using System.Security.Principal;
using Microsoft.Win32.SafeHandles;
n... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Text;
using System.Security.Principal;
using Microsoft.Win32.SafeHandles;
n... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/Directed/coverage/oldtests/lcliimpl.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly lcliimpl {}
.method public sta... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly lcliimpl {}
.method public sta... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/Common/src/Interop/Windows/Advapi32/Interop.OpenEventLog.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.InteropServices;
using Microsoft.Win32.SafeHandles;
internal static partial class Interop
{
internal static partial class Advapi32
{
[GeneratedD... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.InteropServices;
using Microsoft.Win32.SafeHandles;
internal static partial class Interop
{
internal static partial class Advapi32
{
[GeneratedD... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/HardwareIntrinsics/Arm/Shared/LoadUnOpTest.template | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/tests/JIT/Methodical/eh/basics/throwinfinallyerrpathfn_r.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile ... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile ... | -1 |
dotnet/runtime | 65,905 | Add AssemblyName overload for ILVerify.IResolver.Resolve method | Fixes #65573 | jkotas | 2022-02-25T21:48:51Z | 2022-03-01T05:49:50Z | 8686d06e5387cf50f08f451cd697331eb5bd830a | b40b31a126e8ddc0b37aacf50e78618e8c913283 | Add AssemblyName overload for ILVerify.IResolver.Resolve method. Fixes #65573 | ./src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/xsltc/baseline/infft15b.txt | @inffT15c.txt | @inffT15c.txt | -1 |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./eng/pipelines/common/global-build-job.yml | parameters:
buildConfig: ''
nameSuffix: ''
buildArgs: ''
archType: ''
hostedOs: ''
osGroup: ''
osSubgroup: ''
container: ''
crossBuild: false
crossrootfsDir: ''
variables: []
targetRid: ''
timeoutInMinutes: ''
dependsOn: []
pool: ''
platform: ''
pgoType: ''
condition: true
useConti... | parameters:
buildConfig: ''
nameSuffix: ''
buildArgs: ''
archType: ''
hostedOs: ''
osGroup: ''
osSubgroup: ''
container: ''
crossBuild: false
crossrootfsDir: ''
variables: []
targetRid: ''
timeoutInMinutes: ''
dependsOn: []
pool: ''
platform: ''
pgoType: ''
condition: true
useConti... | 1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./eng/pipelines/common/templates/runtimes/build-test-job.yml | parameters:
buildConfig: ''
archType: ''
osGroup: ''
osSubgroup: ''
container: ''
testGroup: ''
displayNameArgs: ''
condition: true
stagedBuild: false
variables: {}
pool: ''
runtimeFlavor: 'coreclr'
runtimeFlavorDisplayName: 'CoreCLR'
runtimeVariant: ''
dependsOn: []
dependOnEvaluatePath... | parameters:
buildConfig: ''
archType: ''
osGroup: ''
osSubgroup: ''
container: ''
testGroup: ''
displayNameArgs: ''
condition: true
stagedBuild: false
variables: {}
pool: ''
runtimeFlavor: 'coreclr'
runtimeFlavorDisplayName: 'CoreCLR'
runtimeVariant: ''
dependsOn: []
dependOnEvaluatePath... | 1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./eng/pipelines/coreclr/templates/build-jit-job.yml | parameters:
archType: ''
buildConfig: ''
container: ''
crossBuild: false
crossrootfsDir: ''
osGroup: ''
osSubgroup: ''
pool: ''
stagedBuild: false
timeoutInMinutes: ''
variables: {}
dependOnEvaluatePaths: false
uploadAs: 'azureBlob'
### Product build
jobs:
- template: xplat-pipeline-job.yml
... | parameters:
archType: ''
buildConfig: ''
container: ''
crossBuild: false
crossrootfsDir: ''
osGroup: ''
osSubgroup: ''
pool: ''
stagedBuild: false
timeoutInMinutes: ''
variables: {}
dependOnEvaluatePaths: false
uploadAs: 'azureBlob'
### Product build
jobs:
- template: xplat-pipeline-job.yml
... | 1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./eng/pipelines/coreclr/templates/build-job.yml | parameters:
archType: ''
buildConfig: ''
# compilerName specifies the compiler to use to do the builds. This can either be 'gcc' or left
# unset to use the default (clang on Linux/Mac, Visual C++ on Windows).
compilerName: ''
condition: true
container: ''
crossBuild: false
crossrootfsDir: ''
dependO... | parameters:
archType: ''
buildConfig: ''
# compilerName specifies the compiler to use to do the builds. This can either be 'gcc' or left
# unset to use the default (clang on Linux/Mac, Visual C++ on Windows).
compilerName: ''
condition: true
container: ''
crossBuild: false
crossrootfsDir: ''
dependO... | 1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./eng/pipelines/mono/templates/build-job.yml | parameters:
buildConfig: ''
archType: ''
osGroup: ''
osSubgroup: ''
platform: ''
container: ''
timeoutInMinutes: ''
variables: {}
pool: ''
condition: true
runtimeVariant: ''
isOfficialBuild: false
crossBuild: false
crossrootfsDir: ''
dependsOn: []
monoCrossAOTTargetOS: []
dependOnEvalu... | parameters:
buildConfig: ''
archType: ''
osGroup: ''
osSubgroup: ''
platform: ''
container: ''
timeoutInMinutes: ''
variables: {}
pool: ''
condition: true
runtimeVariant: ''
isOfficialBuild: false
crossBuild: false
crossrootfsDir: ''
dependsOn: []
monoCrossAOTTargetOS: []
dependOnEvalu... | 1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./eng/pipelines/mono/templates/generate-offsets.yml | parameters:
buildConfig: 'Debug'
osGroup: ''
osSubGroup: ''
platform: ''
container: ''
timeoutInMinutes: ''
variables: {}
pool: ''
condition: true
isOfficialBuild: false
### Product build
jobs:
- template: xplat-pipeline-job.yml
parameters:
buildConfig: ${{ parameters.buildConfig }}
osGro... | parameters:
buildConfig: 'Debug'
osGroup: ''
osSubGroup: ''
platform: ''
container: ''
timeoutInMinutes: ''
variables: {}
pool: ''
condition: true
isOfficialBuild: false
### Product build
jobs:
- template: xplat-pipeline-job.yml
parameters:
buildConfig: ${{ parameters.buildConfig }}
osGro... | 1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./global.json | {
"sdk": {
"version": "6.0.100",
"allowPrerelease": true,
"rollForward": "major"
},
"tools": {
"dotnet": "6.0.100"
},
"native-tools": {
"cmake": "3.16.4",
"python3": "3.7.1"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22122.3",
"Microsoft.DotNet.Helix.Sd... | {
"sdk": {
"version": "6.0.100",
"allowPrerelease": true,
"rollForward": "major"
},
"tools": {
"dotnet": "6.0.100"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22122.3",
"Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.22122.3",
"Microsoft.DotNet.SharedFramework.Sdk": "... | 1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./src/mono/mono.proj | <Project Sdk="Microsoft.Build.Traversal" DefaultTargets="Build">
<!--
Build properties:
- MonoForceInterpreter - enable the interpreter
- MonoEnableLLVM - enable LLVM
- MonoLLVMDir - [optional] the directory where LLVM is located
- MonoAOTEnableLLVM - enable LLVM for an AOT-only Mono
... | <Project Sdk="Microsoft.Build.Traversal" DefaultTargets="Build">
<!--
Build properties:
- MonoForceInterpreter - enable the interpreter
- MonoEnableLLVM - enable LLVM
- MonoLLVMDir - [optional] the directory where LLVM is located
- MonoAOTEnableLLVM - enable LLVM for an AOT-only Mono
... | 1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./eng/testing/performance/blazor_perf.proj | <Project Sdk="Microsoft.DotNet.Helix.Sdk" DefaultTargets="Test">
<PropertyGroup Condition="'$(AGENT_OS)' != 'Windows_NT'">
<Python>python3</Python>
<HelixPreCommands>$(HelixPreCommands);chmod +x $HELIX_WORKITEM_PAYLOAD/SOD/SizeOnDisk</HelixPreCommands>
</PropertyGroup>
<ItemGroup>
<HelixCorrelationPa... | <Project Sdk="Microsoft.DotNet.Helix.Sdk" DefaultTargets="Test">
<PropertyGroup Condition="'$(AGENT_OS)' != 'Windows_NT'">
<Python>python3</Python>
<HelixPreCommands>$(HelixPreCommands);chmod +x $HELIX_WORKITEM_PAYLOAD/SOD/SizeOnDisk</HelixPreCommands>
</PropertyGroup>
<ItemGroup>
<HelixCorrelationPa... | -1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Manifest/localize/WorkloadManifest.es.json | {
"workloads/wasm-tools/description": "Herramientas de compilación de WebAssembly de .NET"
} | {
"workloads/wasm-tools/description": "Herramientas de compilación de WebAssembly de .NET"
} | -1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./src/libraries/System.Runtime.Loader/tests/ApplyUpdate/System.Reflection.Metadata.ApplyUpdate.Test.CustomAttributeDelete/deltascript.json | {
"changes": [
{"document": "CustomAttributeDelete.cs", "update": "CustomAttributeDelete_v1.cs"},
]
}
| {
"changes": [
{"document": "CustomAttributeDelete.cs", "update": "CustomAttributeDelete_v1.cs"},
]
}
| -1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./src/libraries/System.Runtime.Loader/tests/ApplyUpdate/System.Reflection.Metadata.ApplyUpdate.Test.AddLambdaCapturingThis/deltascript.json | {
"changes": [
{"document": "AddLambdaCapturingThis.cs", "update": "AddLambdaCapturingThis_v1.cs"},
]
}
| {
"changes": [
{"document": "AddLambdaCapturingThis.cs", "update": "AddLambdaCapturingThis_v1.cs"},
]
}
| -1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./src/libraries/System.Private.Xml.Linq/tests/TrimmingTests/System.Xml.Linq.TrimmingTests.proj | <Project DefaultTargets="Build">
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" />
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.targets))" />
</Project>
| <Project DefaultTargets="Build">
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" />
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.targets))" />
</Project>
| -1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Manifest/localize/WorkloadManifest.ko.json | {
"workloads/wasm-tools/description": ".NET WebAssembly 빌드 도구"
} | {
"workloads/wasm-tools/description": ".NET WebAssembly 빌드 도구"
} | -1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./eng/pipelines/common/templates/runtimes/android-runtime-and-send-to-helix.yml | parameters:
buildConfig: ''
archType: ''
osGroup: ''
osSubgroup: ''
container: ''
testGroup: ''
crossrootfsDir: ''
liveLibrariesBuildConfig: ''
helixQueues: ''
stagedBuild: false
displayNameArgs: ''
runtimeVariant: ''
variables: {}
pool: ''
runtimeFlavorDisplayName: 'Mono'
dependsOn: []
... | parameters:
buildConfig: ''
archType: ''
osGroup: ''
osSubgroup: ''
container: ''
testGroup: ''
crossrootfsDir: ''
liveLibrariesBuildConfig: ''
helixQueues: ''
stagedBuild: false
displayNameArgs: ''
runtimeVariant: ''
variables: {}
pool: ''
runtimeFlavorDisplayName: 'Mono'
dependsOn: []
... | -1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./eng/pipelines/coreclr/templates/superpmi-replay-job.yml | parameters:
buildConfig: '' # required -- build configuration
archType: '' # required -- targeting CPU architecture
osGroup: '' # required -- operating system for the job
osSubgroup: '' # optional -- operating system subgroup
pool: ''
t... | parameters:
buildConfig: '' # required -- build configuration
archType: '' # required -- targeting CPU architecture
osGroup: '' # required -- operating system for the job
osSubgroup: '' # optional -- operating system subgroup
pool: ''
t... | -1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./src/libraries/System.Data.Common/tests/TrimmingTests/System.Data.Common.TrimmingTests.proj | <Project DefaultTargets="Build">
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" />
<ItemGroup>
<TestConsoleAppSourceFiles Include="CreateSqlXmlReader.cs" />
<TestConsoleAppSourceFiles Include="DbConnectionStringBuilder.cs" />
</ItemGroup>
<Import Project="$([MSBuild]::GetPat... | <Project DefaultTargets="Build">
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" />
<ItemGroup>
<TestConsoleAppSourceFiles Include="CreateSqlXmlReader.cs" />
<TestConsoleAppSourceFiles Include="DbConnectionStringBuilder.cs" />
</ItemGroup>
<Import Project="$([MSBuild]::GetPat... | -1 | |
dotnet/runtime | 65,901 | Remove usages of native bootstrapping | hoyosjs | 2022-02-25T17:42:53Z | 2022-02-25T22:06:34Z | 2ce0af0b8404cf051783516cff4b07abccd5de00 | 8727ac772e1d8031691ee52e2d66e2520f78d01a | Remove usages of native bootstrapping. | ./src/coreclr/.nuget/Microsoft.CrossOsDiag.Private.CoreCLR/Microsoft.CrossOsDiag.Private.CoreCLR.proj | <Project Sdk="Microsoft.Build.Traversal">
<PropertyGroup>
<BuildIdentityPackage>false</BuildIdentityPackage>
<SupportedRids>linux-x64;linux-musl-x64;linux-arm64;linux-musl-arm64;linux-arm;linux-musl-arm</SupportedRids>
</PropertyGroup>
<Target Name="VerifyCrossDacProperties" BeforeTargets="Build;Pack">
... | <Project Sdk="Microsoft.Build.Traversal">
<PropertyGroup>
<BuildIdentityPackage>false</BuildIdentityPackage>
<SupportedRids>linux-x64;linux-musl-x64;linux-arm64;linux-musl-arm64;linux-arm;linux-musl-arm</SupportedRids>
</PropertyGroup>
<Target Name="VerifyCrossDacProperties" BeforeTargets="Build;Pack">
... | -1 |