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,899 | add missing GC.SuppressFinalize(this) to FileStream.DisposeAsync | I was unable to repro #65835 locally for a few hours, but I believe that the it's caused by lack of `GC.SuppressFinalize(this)` in `FileStream.DisposeAsync` and my recent changes from #64997 have just exposed the problem by adding the finalizer to `FileStream` itself.
Explanation: the default `Stream.DisposeAsync`... | adamsitnik | 2022-02-25T17:17:25Z | 2022-03-01T13:15:47Z | 097d9ea3c1584eb8745bd0a72ebf9cd3a31f1618 | 3cbed4b71800709a8121e50e964ae5b02bd80b94 | add missing GC.SuppressFinalize(this) to FileStream.DisposeAsync. I was unable to repro #65835 locally for a few hours, but I believe that the it's caused by lack of `GC.SuppressFinalize(this)` in `FileStream.DisposeAsync` and my recent changes from #64997 have just exposed the problem by adding the finalizer to `FileS... | ./src/tests/JIT/HardwareIntrinsics/General/NotSupported/Vector256BooleanGetElementMaxValue.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,899 | add missing GC.SuppressFinalize(this) to FileStream.DisposeAsync | I was unable to repro #65835 locally for a few hours, but I believe that the it's caused by lack of `GC.SuppressFinalize(this)` in `FileStream.DisposeAsync` and my recent changes from #64997 have just exposed the problem by adding the finalizer to `FileStream` itself.
Explanation: the default `Stream.DisposeAsync`... | adamsitnik | 2022-02-25T17:17:25Z | 2022-03-01T13:15:47Z | 097d9ea3c1584eb8745bd0a72ebf9cd3a31f1618 | 3cbed4b71800709a8121e50e964ae5b02bd80b94 | add missing GC.SuppressFinalize(this) to FileStream.DisposeAsync. I was unable to repro #65835 locally for a few hours, but I believe that the it's caused by lack of `GC.SuppressFinalize(this)` in `FileStream.DisposeAsync` and my recent changes from #64997 have just exposed the problem by adding the finalizer to `FileS... | ./src/mono/mono/utils/mono-signal-handler.h | /**
* \file
* Handle signal handler differences across platforms
*
* Copyright (C) 2013 Xamarin Inc
* Licensed under the MIT license. See LICENSE file in the project root for full license information.
*/
#ifndef __MONO_SIGNAL_HANDLER_H__
#define __MONO_SIGNAL_HANDLER_H__
#include "config.h"
#include <glib.h>
/... | /**
* \file
* Handle signal handler differences across platforms
*
* Copyright (C) 2013 Xamarin Inc
* Licensed under the MIT license. See LICENSE file in the project root for full license information.
*/
#ifndef __MONO_SIGNAL_HANDLER_H__
#define __MONO_SIGNAL_HANDLER_H__
#include "config.h"
#include <glib.h>
/... | -1 |
dotnet/runtime | 65,899 | add missing GC.SuppressFinalize(this) to FileStream.DisposeAsync | I was unable to repro #65835 locally for a few hours, but I believe that the it's caused by lack of `GC.SuppressFinalize(this)` in `FileStream.DisposeAsync` and my recent changes from #64997 have just exposed the problem by adding the finalizer to `FileStream` itself.
Explanation: the default `Stream.DisposeAsync`... | adamsitnik | 2022-02-25T17:17:25Z | 2022-03-01T13:15:47Z | 097d9ea3c1584eb8745bd0a72ebf9cd3a31f1618 | 3cbed4b71800709a8121e50e964ae5b02bd80b94 | add missing GC.SuppressFinalize(this) to FileStream.DisposeAsync. I was unable to repro #65835 locally for a few hours, but I believe that the it's caused by lack of `GC.SuppressFinalize(this)` in `FileStream.DisposeAsync` and my recent changes from #64997 have just exposed the problem by adding the finalizer to `FileS... | ./src/libraries/System.IO.FileSystem.Primitives/ref/System.IO.FileSystem.Primitives.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// -----------------------... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// -----------------------... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./eng/codeOptimization.targets | <Project>
<PropertyGroup Condition="'$(IsEligibleForNgenOptimization)' == ''">
<IsEligibleForNgenOptimization>true</IsEligibleForNgenOptimization>
<IsEligibleForNgenOptimization Condition="'$(IsReferenceAssembly)' == 'true'">false</IsEligibleForNgenOptimization>
<IsEligibleForNgenOptimization Conditio... | <Project>
<PropertyGroup Condition="'$(IsEligibleForNgenOptimization)' == ''">
<IsEligibleForNgenOptimization>true</IsEligibleForNgenOptimization>
<IsEligibleForNgenOptimization Condition="'$(IsReferenceAssemblyProject)' == 'true'">false</IsEligibleForNgenOptimization>
<IsEligibleForNgenOptimization C... | 1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./eng/generators.targets | <Project>
<PropertyGroup>
<EnableDllImportGenerator Condition="'$(EnableDllImportGenerator)' == ''
and '$(MSBuildProjectName)' == 'System.Private.CoreLib'">true</EnableDllImportGenerator>
<IncludeDllImportGeneratorSources Condition="'$(IncludeDllImportGeneratorSources)' == ''">true</I... | <Project>
<PropertyGroup>
<EnableDllImportGenerator Condition="'$(EnableDllImportGenerator)' == ''
and '$(MSBuildProjectName)' == 'System.Private.CoreLib'">true</EnableDllImportGenerator>
<IncludeDllImportGeneratorSources Condition="'$(IncludeDllImportGeneratorSources)' == ''">true</I... | 1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./eng/references.targets | <Project>
<PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
<!--
Disable RAR from transitively discovering dependencies for references. This is required as we don't copy
dependencies over into the output directory which means RAR can't resolve them.
-->
<_FindDependen... | <Project>
<PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
<!--
Disable RAR from transitively discovering dependencies for references. This is required as we don't copy
dependencies over into the output directory which means RAR can't resolve them.
-->
<_FindDependen... | 1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./eng/slngen.targets | <Project>
<PropertyGroup>
<SlnGenSolutionFolder Condition="'$(IsGeneratorProject)' == 'true'">gen</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsReferenceAssembly)' == 'true'">ref</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsTestProject)' == 'true' or '$(IsTestSupportProject)... | <Project>
<PropertyGroup>
<SlnGenSolutionFolder Condition="'$(IsGeneratorProject)' == 'true'">gen</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsReferenceAssemblyProject)' == 'true'">ref</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsTestProject)' == 'true' or '$(IsTrimmingTest... | 1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/Directory.Build.props | <Project TreatAsLocalProperty="TargetOS">
<PropertyGroup>
<SkipInferTargetOSName>true</SkipInferTargetOSName>
<DisableArcadeTestFramework>true</DisableArcadeTestFramework>
<_projectDirName>$([System.IO.Path]::GetFileName('$(MSBuildProjectDirectory)'))</_projectDirName>
<IsReferenceAssembly Condition=... | <Project>
<PropertyGroup>
<SkipInferTargetOSName>true</SkipInferTargetOSName>
<DisableArcadeTestFramework>true</DisableArcadeTestFramework>
<!-- Set OutDirName to change the BaseOutputPath and BaseIntermediateOutputPath properties to include the ref subfolder. -->
<_projectDirName>$([System.IO.Path]:... | 1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/Directory.Build.targets | <Project>
<PropertyGroup>
<!-- Override strong name key to default to Open for test projects,
Tests which wish to control this should set TestStrongNameKeyId. -->
<TestStrongNameKeyId Condition="'$(TestStrongNameKeyId)' == '' and $(MSBuildProjectName.StartsWith('Microsoft.Extensions.'))">MicrosoftAsp... | <Project>
<PropertyGroup>
<!-- Override strong name key to default to Open for test projects,
Tests which wish to control this should set TestStrongNameKeyId. -->
<TestStrongNameKeyId Condition="'$(TestStrongNameKeyId)' == '' and $(MSBuildProjectName.StartsWith('Microsoft.Extensions.'))">MicrosoftAsp... | 1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/Microsoft.NETCore.Platforms/src/Microsoft.NETCore.Platforms.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetCoreAppToolCurrent);$(NetFrameworkToolCurrent)</TargetFrameworks>
<EnableBinPlacing>false</EnableBinPlacing>
<!-- This project should not build against the live built .NETCoreApp targeting pack as it contributes to the build itself. ... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetCoreAppToolCurrent);$(NetFrameworkToolCurrent)</TargetFrameworks>
<EnableBinPlacing>false</EnableBinPlacing>
<!-- This project should not build against the live built .NETCoreApp targeting pack as it contributes to the build itself. ... | 1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Runtime.InteropServices/gen/Directory.Build.props | <Project>
<Import Project="..\Directory.Build.props" />
<PropertyGroup>
<IsShipping>false</IsShipping>
<!-- We manually enable DllImportGenerator for projects in this folder as part of testing. -->
<EnableDllImportGenerator>false</EnableDllImportGenerator>
<EnableDefaultItems>true</EnableDefaultItem... | <Project>
<Import Project="..\Directory.Build.props" />
<PropertyGroup>
<IsShipping>false</IsShipping>
<!-- We manually enable DllImportGenerator for projects in this folder as part of testing. -->
<EnableDllImportGenerator>false</EnableDllImportGenerator>
<EnableDefaultItems>true</EnableDefaultItem... | 1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/jit64/valuetypes/nullable/castclass/null/castclass-null024.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="castclass-null024.cs" />
<Compile Include="..\structdef.cs" />
... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="castclass-null024.cs" />
<Compile Include="..\structdef.cs" />
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/jit64/valuetypes/nullable/castclass/castclass/castclass039.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="castclass039.cs" />
<Compile Include="..\structdef.cs" />
</I... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="castclass039.cs" />
<Compile Include="..\structdef.cs" />
</I... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/JitBlue/Runtime_34170/Runtime_34170.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType />
<Optimize>True</Optimize>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</P... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType />
<Optimize>True</Optimize>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</P... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b40496/b40496.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/jit64/hfa/main/testC/hfa_sd0C_d.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="hfa_testC.cs" />
</ItemGroup>
<Item... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="hfa_testC.cs" />
</ItemGroup>
<Item... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/jit64/valuetypes/nullable/castclass/castclass/castclass020.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="castclass020.cs" />
<Compile Include="..\structdef.cs" />
</I... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="castclass020.cs" />
<Compile Include="..\structdef.cs" />
</I... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/GC/Scenarios/GCSimulator/GCSimulator_6.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments>
... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments>
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/CodeGenBringUpTests/mul3_ro.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="mul3.cs" />
</ItemGroup>
</Project>... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="mul3.cs" />
</ItemGroup>
</Project>... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/GC/Scenarios/DoublinkList/doublinknoleak.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<GCStressIncompatible>true</GCStressIncompatible>
<IsLongRunningGCTest>true</IsLongRunningGCTest>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="doublinknoleak.cs" />
</ItemGro... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<GCStressIncompatible>true</GCStressIncompatible>
<IsLongRunningGCTest>true</IsLongRunningGCTest>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="doublinknoleak.cs" />
</ItemGro... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Net.Mail/src/System.Net.Mail.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetFrameworks>$(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser;$(NetCoreAppCurrent)-tvOS;$(NetCoreAppCurrent)</TargetFrameworks>
<Nullable>enable</Nullable>
</PropertyGrou... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetFrameworks>$(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser;$(NetCoreAppCurrent)-tvOS;$(NetCoreAppCurrent)</TargetFrameworks>
<Nullable>enable</Nullable>
</PropertyGrou... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/CodeGenBringUpTests/StructReturn_do.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="StructReturn.cs" />
</ItemGroup>
</Pro... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="StructReturn.cs" />
</ItemGroup>
</Pro... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/CodeGenBringUpTests/FactorialRec_d.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="FactorialRec.cs" />
</ItemGroup>
</Pr... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="FactorialRec.cs" />
</ItemGroup>
</Pr... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/GC/Scenarios/GCSimulator/GCSimulator_206.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 6000 -lt 2 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments>
... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 6000 -lt 2 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments>
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/JitBlue/Runtime_31673/Runtime_31673.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType />
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType />
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Methodical/eh/leaves/oponerror_ro.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="oponerror.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\.... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="oponerror.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\.... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/CodeGenBringUpTests/DblCall2_d.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="DblCall2.cs" />
</ItemGroup>
</Projec... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="DblCall2.cs" />
</ItemGroup>
</Projec... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/JitBlue/GitHub_25134/GitHub_25134.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Runtime.InteropServices.RuntimeInformation/tests/System.Runtime.InteropServices.RuntimeInformation.Tests.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
<TargetFrameworks>$(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Compile Include="CheckArchitectureTests.cs" />
... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
<TargetFrameworks>$(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Compile Include="CheckArchitectureTests.cs" />
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/coreclr/tools/Directory.Build.props | <Project>
<Import Project="../Directory.Build.props" />
<PropertyGroup>
<IsShipping>false</IsShipping>
<SignAssembly>false</SignAssembly>
<RunAnalyzers>false</RunAnalyzers>
</PropertyGroup>
<!-- MSBuild doesn't understand the Checked configuration -->
<PropertyGroup Condition="'$(Configuration)... | <Project>
<Import Project="../Directory.Build.props" />
<PropertyGroup>
<IsShipping>false</IsShipping>
<SignAssembly>false</SignAssembly>
<RunAnalyzers>false</RunAnalyzers>
</PropertyGroup>
<!-- MSBuild doesn't understand the Checked configuration -->
<PropertyGroup Condition="'$(Configuration)... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/jit64/gc/misc/struct2.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="struct2.cs" />
</ItemGroup>
</Project... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="struct2.cs" />
</ItemGroup>
</Project... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/GC/Scenarios/GCSimulator/GCSimulator_159.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments>
... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments>
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/nativeaot/SmokeTests/Reflection/Reflection_ReflectedOnly.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestKind>BuildAndRun</CLRTestKind>
<CLRTestPriority>0</CLRTestPriority>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- There's just too many of these warnings -->
<SuppressTrimAnalysisWarnings>true</SuppressT... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestKind>BuildAndRun</CLRTestKind>
<CLRTestPriority>0</CLRTestPriority>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- There's just too many of these warnings -->
<SuppressTrimAnalysisWarnings>true</SuppressT... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Net.NetworkInformation/ref/System.Net.NetworkInformation.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Include="System.Net.NetworkInformation.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Microsoft.Win32.Pr... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Include="System.Net.NetworkInformation.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Microsoft.Win32.Pr... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/opt/OSR/mainlooptry.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<DebugType />
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
<PropertyGroup>
<CLRTestBatchPreCommands><![CDATA[
$(CLRTestBatchPreCommands)
set ... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<DebugType />
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
<PropertyGroup>
<CLRTestBatchPreCommands><![CDATA[
$(CLRTestBatchPreCommands)
set ... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/CodeGenBringUpTests/DblMul_d.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="DblMul.cs" />
</ItemGroup>
</Project>... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="DblMul.cs" />
</ItemGroup>
</Project>... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/CodeGenBringUpTests/FibLoop_d.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="FibLoop.cs" />
</ItemGroup>
</Project... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="FibLoop.cs" />
</ItemGroup>
</Project... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/opt/virtualstubdispatch/manyintf/ctest_cs_ro.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="ctest.cs" />
</ItemGroup>
<ItemGroup... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="ctest.cs" />
</ItemGroup>
<ItemGroup... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./eng/testing/outerBuild.targets | <Project>
<Target Name="Test" DependsOnTargets="GetProjectWithBestTargetFrameworks">
<MSBuild Projects="@(InnerBuildProjectsWithBestTargetFramework)"
Targets="Test">
</MSBuild>
</Target>
<Target Name="VSTest" DependsOnTargets="GetProjectWithBestTargetFrameworks">
<MSBuild Projects... | <Project>
<Target Name="Test" DependsOnTargets="GetProjectWithBestTargetFrameworks">
<MSBuild Projects="@(InnerBuildProjectsWithBestTargetFramework)"
Targets="Test">
</MSBuild>
</Target>
<Target Name="VSTest" DependsOnTargets="GetProjectWithBestTargetFrameworks">
<MSBuild Projects... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/JitBlue/GitHub_8599/GitHub_8599.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType />
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType />
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/GC/Scenarios/GCSimulator/GCSimulator_249.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments>
... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments>
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/CoreMangLib/system/type/TypeEquals1.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="typeequals1.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(TestSource... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="typeequals1.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(TestSource... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Performance/CodeQuality/Burgers/Burgers.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
<PropertyGroup>
<ProjectAsse... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
<PropertyGroup>
<ProjectAsse... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/jit64/hfa/main/testE/hfa_sf0E_d.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="hfa_testE.cs" />
</ItemGroup>
<Item... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="hfa_testE.cs" />
</ItemGroup>
<Item... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M13-RTM/b89277/b89277.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Methodical/int64/arrays/lcs_ulong_do.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="lcs_ulong.cs" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="lcs_ulong.cs" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/CodeGenBringUpTests/Eq1_d.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="Eq1.cs" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="Eq1.cs" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Performance/CodeQuality/Benchstones/MDBenchF/MDSqMtx/MDSqMtx.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
<PropertyGroup>
<ProjectAsse... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
<PropertyGroup>
<ProjectAsse... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Methodical/Invoke/25params/25param3a_cs_d.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="25param3a.cs" />
</ItemGroup>
</Proje... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="25param3a.cs" />
</ItemGroup>
</Proje... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/JitBlue/GitHub_19550/GitHub_19550.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Directed/shift/uint64_d.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="uint64.cs" />
</ItemGroup>
</Project>... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="uint64.cs" />
</ItemGroup>
</Project>... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/GC/Scenarios/GCSimulator/GCSimulator_60.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0</CLRTestExecutionArguments>
... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0</CLRTestExecutionArguments>
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Threading.ThreadPool/Directory.Build.props | <Project>
<Import Project="..\Directory.Build.props" />
<PropertyGroup>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<IncludePlatformAttributes>true</IncludePlatformAttributes>
</PropertyGroup>
</Project> | <Project>
<Import Project="..\Directory.Build.props" />
<PropertyGroup>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<IncludePlatformAttributes>true</IncludePlatformAttributes>
</PropertyGroup>
</Project> | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/CodeGenBringUpTests/StaticValueField_ro.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="StaticValueField.cs" />
</ItemGroup... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="StaticValueField.cs" />
</ItemGroup... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaValidatorApi/System.Xml.XmlSchema.XmlSchemaValidatorApi.Tests.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Constructor_AddSchema.cs" />
<Compile Include="CustomImplementations.cs" />
<Compile Include="ExceptionVerifier.cs" />
<Compile Include="GetE... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Constructor_AddSchema.cs" />
<Compile Include="CustomImplementations.cs" />
<Compile Include="ExceptionVerifier.cs" />
<Compile Include="GetE... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/readytorun/r2rdump/BasicTests/files/HelloWorld.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>library</OutputType>
<CLRTestKind>SharedLibrary</CLRTestKind>
</PropertyGroup>
<ItemGroup>
<Compile Include="HelloWorld.cs" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>library</OutputType>
<CLRTestKind>SharedLibrary</CLRTestKind>
</PropertyGroup>
<ItemGroup>
<Compile Include="HelloWorld.cs" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/Loader/classloader/v1/M10/Acceptance/Case4.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Case4.cool" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Case4.cool" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/GC/Scenarios/GCSimulator/GCSimulator_111.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments>
... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GCStressIncompatible>true</GCStressIncompatible>
<CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments>
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/JitBlue/DevDiv_794631/DevDiv_794631_r.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="DevDiv_794631.cs" />
</ItemGroup>
</P... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>None</DebugType>
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="DevDiv_794631.cs" />
</ItemGroup>
</P... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Performance/CodeQuality/Bytemark/nnet.dat | 5 7 8
26
0 0 1 0 0
0 1 0 1 0
1 0 0 0 1
1 0 0 0 1
1 1 1 1 1
1 0 0 0 1
1 0 0 0 1
0 1 0 0 0 0 0 1
1 1 1 1 0
1 0 0 0 1
1 0 0 0 1
1 1 1 1 0
1 0 0 0 1
1 0 0 0 1
1 1 1 1 0
0 1 0 0 0 0 1 0
0 1 1 1 0
1 0 0 0 1
1 0 0 0 0
1 0 0 0 0
1 0 0 0... | 5 7 8
26
0 0 1 0 0
0 1 0 1 0
1 0 0 0 1
1 0 0 0 1
1 1 1 1 1
1 0 0 0 1
1 0 0 0 1
0 1 0 0 0 0 0 1
1 1 1 1 0
1 0 0 0 1
1 0 0 0 1
1 1 1 1 0
1 0 0 0 1
1 0 0 0 1
1 1 1 1 0
0 1 0 0 0 0 1 0
0 1 1 1 0
1 0 0 0 1
1 0 0 0 0
1 0 0 0 0
1 0 0 0... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd/AddPairwiseWideningAndAddScalar.Vector64.Int32.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,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/XsltDebugger.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.Xml.Xsl.XsltOld.Debugger
{
using System.Xml.XPath;
internal interface IXsltProcessor
{
}
internal interface IXsltDebugger
{
string ... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Xml.Xsl.XsltOld.Debugger
{
using System.Xml.XPath;
internal interface IXsltProcessor
{
}
internal interface IXsltDebugger
{
string ... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/ServiceCreatorCallback.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.ComponentModel.Design
{
/// <summary>
/// Declares a callback function to create an instance of a service on demand.
/// </summary>
public delegate o... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.ComponentModel.Design
{
/// <summary>
/// Declares a callback function to create an instance of a service on demand.
/// </summary>
public delegate o... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Formats.Asn1/src/System/Formats/Asn1/Asn1Tag.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.Diagnostics.CodeAnalysis;
namespace System.Formats.Asn1
{
/// <summary>
/// This type represents an ASN.1 tag, as described in ITU-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.Diagnostics;
using System.Diagnostics.CodeAnalysis;
namespace System.Formats.Asn1
{
/// <summary>
/// This type represents an ASN.1 tag, as described in ITU-T... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Methodical/explicit/basic/refarg_s.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;
namespace Test
{
internal class AA
{
protected char pad1 = 'z';
public String mm = "aha";
public AA() { _self = this; }
priva... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Test
{
internal class AA
{
protected char pad1 = 'z';
public String mm = "aha";
public AA() { _self = this; }
priva... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest710/Generated710.ilproj | <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Generated710.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestFramework\TestFramework.csproj" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Generated710.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestFramework\TestFramework.csproj" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.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.Diagnostics;
using System.Drawing.Internal;
using System.Runtime.InteropServices;
namespace System.Drawing.Printing
{
/// <summary>
/// Specifies settings that ... | // 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.Drawing.Internal;
using System.Runtime.InteropServices;
namespace System.Drawing.Printing
{
/// <summary>
/// Specifies settings that ... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/coreclr/nativeaot/Runtime/amd64/UniversalTransition.asm | ;; Licensed to the .NET Foundation under one or more agreements.
;; The .NET Foundation licenses this file to you under the MIT license.
include AsmMacros.inc
ifdef FEATURE_DYNAMIC_CODE
ifdef _DEBUG
TRASH_SAVED_ARGUMENT_REGISTERS equ 1
else
TRASH_SAVED_ARGUMENT_REGISTERS equ 0
endif
if TRASH_SAVED_ARGUMENT_REGISTER... | ;; Licensed to the .NET Foundation under one or more agreements.
;; The .NET Foundation licenses this file to you under the MIT license.
include AsmMacros.inc
ifdef FEATURE_DYNAMIC_CODE
ifdef _DEBUG
TRASH_SAVED_ARGUMENT_REGISTERS equ 1
else
TRASH_SAVED_ARGUMENT_REGISTERS equ 0
endif
if TRASH_SAVED_ARGUMENT_REGISTER... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Runtime.Caching/ref/System.Runtime.Caching.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// -----------------------... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// -----------------------... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Text.Json/src/System/Text/Json/Document/JsonDocument.Parse.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.Buffers;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace System.Text.J... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Buffers;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace System.Text.J... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest960/Generated960.ilproj | <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Generated960.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestFramework\TestFramework.csproj" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Generated960.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestFramework\TestFramework.csproj" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/xsltc/baseline/fft14.txt | Microsoft (R) XSLT Compiler version 2.0.51103
for Microsoft (R) Windows (R) 2005 Framework version 2.0.50727
Copyright (C) Microsoft Corporation 2006. All right reserved.
error : Response file '.\infft14.txt' included multiple times.
| Microsoft (R) XSLT Compiler version 2.0.51103
for Microsoft (R) Windows (R) 2005 Framework version 2.0.50727
Copyright (C) Microsoft Corporation 2006. All right reserved.
error : Response file '.\infft14.txt' included multiple times.
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Drawing.Common/ref/System.Drawing.Common.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetCoreAppCurrent);$(NetCoreAppMinimum);netstandard2.0;$(NetFrameworkMinimum)</TargetFrameworks>
<IncludeInternalObsoleteAttribute>true</IncludeInternalObsoleteAttribute>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
... | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetCoreAppCurrent);$(NetCoreAppMinimum);netstandard2.0;$(NetFrameworkMinimum)</TargetFrameworks>
<IncludeInternalObsoleteAttribute>true</IncludeInternalObsoleteAttribute>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/XsltApiV2/baseline/RemoveParam13.txt | <result>
<arg1>Test</arg1>
<arg2>Test</arg2>
<arg3>Test</arg3>
<arg4>Test</arg4>
<arg5>Test</arg5>
<arg6>No Value Specified</arg6>
</result>
| <result>
<arg1>Test</arg1>
<arg2>Test</arg2>
<arg3>Test</arg3>
<arg4>Test</arg4>
<arg5>Test</arg5>
<arg6>No Value Specified</arg6>
</result>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd.Arm64/MinNumberPairwise.Vector64.Single.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,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Private.CoreLib/src/System/IO/InvalidDataException.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.Serialization;
namespace System.IO
{
/// <summary>The exception that is thrown when a data stream is in an invalid format.</summary>
/// <remarks>An <se... | // 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.Serialization;
namespace System.IO
{
/// <summary>The exception that is thrown when a data stream is in an invalid format.</summary>
/// <remarks>An <se... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/Common/src/Interop/Windows/SspiCli/Interop.KerbLogonSubmitType.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;
internal static partial class Interop
{
internal static partial class SspiCli
{
internal enum KERB_LOGON_SUBMIT_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;
internal static partial class Interop
{
internal static partial class SspiCli
{
internal enum KERB_LOGON_SUBMIT_T... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/JitBlue/DevDiv_278523/DevDiv_278523_Target_32Bit.ilproj | <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
<!-- There is a 32 and 64 version of this test to allow it to be compiled for all targets -->
<CLRTestTargetUnsupported Condition="'$(TargetBits)' != '32'">true</CLRTestTargetUnsuppor... | <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
<!-- There is a 32 and 64 version of this test to allow it to be compiled for all targets -->
<CLRTestTargetUnsupported Condition="'$(TargetBits)' != '32'">true</CLRTestTargetUnsuppor... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./docs/pr-builds.md | ## PR Builds
When submitting a PR to the `dotnet/runtime` repository various builds will run validation in many areas to ensure we keep productivity and quality high.
The `dotnet/runtime` validation system can become overwhelming as we need to cover a lot of build scenarios and test in all the platforms that we suppor... | ## PR Builds
When submitting a PR to the `dotnet/runtime` repository various builds will run validation in many areas to ensure we keep productivity and quality high.
The `dotnet/runtime` validation system can become overwhelming as we need to cover a lot of build scenarios and test in all the platforms that we suppor... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Security.Cryptography.Cng/tests/ECDsaCngProvider.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.Cryptography.EcDsa.Tests
{
public class ECDsaProvider : IECDsaProvider
{
public ECDsa Create()
{
return new ECDsaCng();
... | // 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.Cryptography.EcDsa.Tests
{
public class ECDsaProvider : IECDsaProvider
{
public ECDsa Create()
{
return new ECDsaCng();
... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/baseservices/threading/generics/Monitor/TryEnter04.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.Threading;
public struct ValX1<T> {}
public class RefX1<T> {}
struct Gen<T>
{
public static void TryEnterTest()
{
// #pragma warning disable 219
// G... | // 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.Threading;
public struct ValX1<T> {}
public class RefX1<T> {}
struct Gen<T>
{
public static void TryEnterTest()
{
// #pragma warning disable 219
// G... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.IO.FileSystem.Watcher/tests/FileSystemWatcher.Directory.NotifyFilter.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.Runtime.InteropServices;
using Xunit;
namespace System.IO.Tests
{
[ActiveIssue("https://github.com/dotnet/runtime/issues/34583", 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.Collections.Generic;
using System.Runtime.InteropServices;
using Xunit;
namespace System.IO.Tests
{
[ActiveIssue("https://github.com/dotnet/runtime/issues/34583", T... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/xsltc/baseline/infft12b.txt | @infft12c.txt | @infft12c.txt | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.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;
namespace Microsoft.Extensions.Logging
{
/// <summary>
/// Flags to indicate which trace context parts should be included with the logging scopes.
/// </sum... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Microsoft.Extensions.Logging
{
/// <summary>
/// Flags to indicate which trace context parts should be included with the logging scopes.
/// </sum... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Text.Encoding/tests/UTF8Encoding/UTF8EncodingGetMaxCharCount.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 UTF8EncodingGetMaxCharCount
{
[Theory]
[InlineData(0)]
[InlineData(1)]
[InlineData(10... | // 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 UTF8EncodingGetMaxCharCount
{
[Theory]
[InlineData(0)]
[InlineData(1)]
[InlineData(10... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/xsltc/baseline/bft13.txt | <?xml version="1.0" encoding="utf-8"?>Hello, world! | <?xml version="1.0" encoding="utf-8"?>Hello, world! | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/Semantics/EXPRFLAG.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;
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
[Flags]
internal enum EXPRFLAG
{
// These are specific to various node types.
// Order... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
[Flags]
internal enum EXPRFLAG
{
// These are specific to various node types.
// Order... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Methodical/MDArray/GaussJordan/structarr_cs_do.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="structarr.cs" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="structarr.cs" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/mono/mono/tests/exception5.cs | using System;
public class Ex {
public static int test (int a) {
int res;
int fin = 0;
try {
try {
res = 10/a;
} catch (DivideByZeroException ex) {
res = 34;
} catch {
res = 22;
}
} catch {
res = 44;
} finally {
fin += 1;
}
return fin;
}
public static int Main () {
if... | using System;
public class Ex {
public static int test (int a) {
int res;
int fin = 0;
try {
try {
res = 10/a;
} catch (DivideByZeroException ex) {
res = 34;
} catch {
res = 22;
}
} catch {
res = 44;
} finally {
fin += 1;
}
return fin;
}
public static int Main () {
if... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M12-Beta2/b72164/b72164.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;
internal unsafe class bug1
{
public static void Func1(double* a01)
{
Console.WriteLine("The result should be 12");
Console.WriteLine(*a01 + (*a0... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
internal unsafe class bug1
{
public static void Func1(double* a01)
{
Console.WriteLine("The result should be 12");
Console.WriteLine(*a01 + (*a0... | -1 |
dotnet/runtime | 65,896 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection | Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somewhere under a '/tests/'
directory and the project name's suffix ... | ViktorHofer | 2022-02-25T16:17:10Z | 2022-02-28T20:13:23Z | e652e007df4b7e6a66dbdc4e981496537bd0fcc1 | a6f45395354fdcf63ee7f6abdadfb33f32e88459 | Make Is*Project properties unambiguous and improve IsGeneratorProject detection. Currently these properties exist which categorize projects:
- `IsReferenceAssembly`: The project's parent directory is 'ref'
- `IsGeneratorProject`: The project's parent directory is 'gen'
- `IsTestProject`: The project is located somew... | ./src/libraries/System.Private.Xml/tests/XmlReader/ReadContentAs/ReadAsDecimalTests.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.Xml.Tests
{
public class DecimalTests
{
[Fact]
public static void ReadContentAsDecimal1()
{
var reader = Ut... | // 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.Xml.Tests
{
public class DecimalTests
{
[Fact]
public static void ReadContentAsDecimal1()
{
var reader = Ut... | -1 |
dotnet/runtime | 65,889 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE | Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| simonrozsival | 2022-02-25T12:07:00Z | 2022-03-09T14:24:14Z | e32f3b61cd41e6a97ebe8f512ff673b63ff40640 | cbcc616cf386b88e49f97f74182ffff241528179 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE. Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| ./src/mono/mono/mini/method-to-ir.c | /**
* \file
* Convert CIL to the JIT internal representation
*
* Author:
* Paolo Molaro (lupus@ximian.com)
* Dietmar Maurer (dietmar@ximian.com)
*
* (C) 2002 Ximian, Inc.
* Copyright 2003-2010 Novell, Inc (http://www.novell.com)
* Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
* Licensed under the ... | /**
* \file
* Convert CIL to the JIT internal representation
*
* Author:
* Paolo Molaro (lupus@ximian.com)
* Dietmar Maurer (dietmar@ximian.com)
*
* (C) 2002 Ximian, Inc.
* Copyright 2003-2010 Novell, Inc (http://www.novell.com)
* Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
* Licensed under the ... | 1 |
dotnet/runtime | 65,889 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE | Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| simonrozsival | 2022-02-25T12:07:00Z | 2022-03-09T14:24:14Z | e32f3b61cd41e6a97ebe8f512ff673b63ff40640 | cbcc616cf386b88e49f97f74182ffff241528179 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE. Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| ./src/mono/mono/mini/mini-llvm.c | /**
* \file
* llvm "Backend" for the mono JIT
*
* Copyright 2009-2011 Novell Inc (http://www.novell.com)
* Copyright 2011 Xamarin Inc (http://www.xamarin.com)
* Licensed under the MIT license. See LICENSE file in the project root for full license information.
*/
#include "config.h"
#include <mono/metadata/debu... | /**
* \file
* llvm "Backend" for the mono JIT
*
* Copyright 2009-2011 Novell Inc (http://www.novell.com)
* Copyright 2011 Xamarin Inc (http://www.xamarin.com)
* Licensed under the MIT license. See LICENSE file in the project root for full license information.
*/
#include "config.h"
#include <mono/metadata/debu... | 1 |
dotnet/runtime | 65,889 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE | Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| simonrozsival | 2022-02-25T12:07:00Z | 2022-03-09T14:24:14Z | e32f3b61cd41e6a97ebe8f512ff673b63ff40640 | cbcc616cf386b88e49f97f74182ffff241528179 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE. Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| ./src/mono/mono/mini/simd-intrinsics.c | /**
* SIMD Intrinsics support for netcore.
* Only LLVM is supported as a backend.
*/
#include <config.h>
#include <mono/utils/mono-compiler.h>
#include <mono/metadata/icall-decl.h>
#include "mini.h"
#include "mini-runtime.h"
#include "ir-emit.h"
#include "llvm-intrinsics-types.h"
#ifdef ENABLE_LLVM
#include "mini-l... | /**
* SIMD Intrinsics support for netcore.
* Only LLVM is supported as a backend.
*/
#include <config.h>
#include <mono/utils/mono-compiler.h>
#include <mono/metadata/icall-decl.h>
#include "mini.h"
#include "mini-runtime.h"
#include "ir-emit.h"
#include "llvm-intrinsics-types.h"
#ifdef ENABLE_LLVM
#include "mini-l... | 1 |
dotnet/runtime | 65,889 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE | Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| simonrozsival | 2022-02-25T12:07:00Z | 2022-03-09T14:24:14Z | e32f3b61cd41e6a97ebe8f512ff673b63ff40640 | cbcc616cf386b88e49f97f74182ffff241528179 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE. Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| ./src/mono/mono/mini/simd-methods.h | METHOD2(".ctor", ctor)
METHOD(CopyTo)
METHOD(Equals)
METHOD(GreaterThan)
METHOD(GreaterThanOrEqual)
METHOD(LessThan)
METHOD(LessThanOrEqual)
METHOD(Min)
METHOD(Max)
METHOD(MinScalar)
METHOD(MaxScalar)
METHOD(PopCount)
METHOD(LeadingZeroCount)
METHOD(get_Count)
METHOD(get_IsHardwareAccelerated)
METHOD(get_IsSupported)
M... | METHOD2(".ctor", ctor)
METHOD(CopyTo)
METHOD(Equals)
METHOD(GreaterThan)
METHOD(GreaterThanAll)
METHOD(GreaterThanAny)
METHOD(GreaterThanOrEqual)
METHOD(GreaterThanOrEqualAll)
METHOD(GreaterThanOrEqualAny)
METHOD(LessThan)
METHOD(LessThanAll)
METHOD(LessThanAny)
METHOD(LessThanOrEqual)
METHOD(LessThanOrEqualAll)
METHOD... | 1 |
dotnet/runtime | 65,889 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE | Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| simonrozsival | 2022-02-25T12:07:00Z | 2022-03-09T14:24:14Z | e32f3b61cd41e6a97ebe8f512ff673b63ff40640 | cbcc616cf386b88e49f97f74182ffff241528179 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE. Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| ./src/tests/BuildWasmApps/testassets/native-libs/variadic.c | #include <stdarg.h>
int sum(int n, ...)
{
int result = 0;
va_list ptr;
va_start(ptr, n);
for (int i = 0; i < n; i++)
result += va_arg(ptr, int);
va_end(ptr);
return result;
}
| #include <stdarg.h>
int sum(int n, ...)
{
int result = 0;
va_list ptr;
va_start(ptr, n);
for (int i = 0; i < n; i++)
result += va_arg(ptr, int);
va_end(ptr);
return result;
}
| -1 |
dotnet/runtime | 65,889 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE | Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| simonrozsival | 2022-02-25T12:07:00Z | 2022-03-09T14:24:14Z | e32f3b61cd41e6a97ebe8f512ff673b63ff40640 | cbcc616cf386b88e49f97f74182ffff241528179 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE. Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| ./src/coreclr/pal/inc/rt/oaidl.h | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: oaidl.h
//
// ==========================================================================... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: oaidl.h
//
// ==========================================================================... | -1 |
dotnet/runtime | 65,889 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE | Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| simonrozsival | 2022-02-25T12:07:00Z | 2022-03-09T14:24:14Z | e32f3b61cd41e6a97ebe8f512ff673b63ff40640 | cbcc616cf386b88e49f97f74182ffff241528179 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE. Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| ./src/tests/profiler/native/rejitprofiler/sigparse.h | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#ifndef __PROFILER_SIGNATURE_PARSER__
#define __PROFILER_SIGNATURE_PARSER__
/*
Sig ::= MethodDefSig | MethodRefSig | StandAloneMethodSig | FieldSig | PropertySig | LocalVarSig
Met... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#ifndef __PROFILER_SIGNATURE_PARSER__
#define __PROFILER_SIGNATURE_PARSER__
/*
Sig ::= MethodDefSig | MethodRefSig | StandAloneMethodSig | FieldSig | PropertySig | LocalVarSig
Met... | -1 |
dotnet/runtime | 65,889 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE | Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| simonrozsival | 2022-02-25T12:07:00Z | 2022-03-09T14:24:14Z | e32f3b61cd41e6a97ebe8f512ff673b63ff40640 | cbcc616cf386b88e49f97f74182ffff241528179 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE. Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| ./src/coreclr/pal/src/libunwind/src/ia64/Lscript.c | #define UNW_LOCAL_ONLY
#include <libunwind.h>
#if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY)
#include "Gscript.c"
#endif
| #define UNW_LOCAL_ONLY
#include <libunwind.h>
#if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY)
#include "Gscript.c"
#endif
| -1 |
dotnet/runtime | 65,889 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE | Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| simonrozsival | 2022-02-25T12:07:00Z | 2022-03-09T14:24:14Z | e32f3b61cd41e6a97ebe8f512ff673b63ff40640 | cbcc616cf386b88e49f97f74182ffff241528179 | [Mono] Add SIMD intrinsics for Vector64/128 "All" and "Any" variants of GT/GE/LT/LE. Related to #64072
- `GreaterThanAll`
- `GreaterThanAny`
- `GreaterThanOrEqualAll`
- `GreaterThanOrEqualAny`
- `LessThanAll`
- `LessThanAny`
- `LessThanOrEqualAll`
- `LessThanOrEqualAny`
| ./src/mono/mono/metadata/w32event-win32.c | /**
* \file
* Runtime support for managed Event on Win32
*
* Author:
* Ludovic Henry (luhenry@microsoft.com)
*
* Licensed under the MIT license. See LICENSE file in the project root for full license information.
*/
#include "w32event.h"
#include <windows.h>
#include <winbase.h>
#include <mono/metadata/handle.... | /**
* \file
* Runtime support for managed Event on Win32
*
* Author:
* Ludovic Henry (luhenry@microsoft.com)
*
* Licensed under the MIT license. See LICENSE file in the project root for full license information.
*/
#include "w32event.h"
#include <windows.h>
#include <winbase.h>
#include <mono/metadata/handle.... | -1 |