Fixes for BuildAsStandalone in tests (#84374)
authorMark Plesko <markples@microsoft.com>
Thu, 6 Apr 2023 20:39:50 +0000 (13:39 -0700)
committerGitHub <noreply@github.com>
Thu, 6 Apr 2023 20:39:50 +0000 (13:39 -0700)
This should fix test builds with `set BuildAsStandalone=true`.

- [Remove](https://github.com/dotnet/runtime/commit/5f14f058f4ed2f70633abea1bb59f34203e1718d) unconditional `<BuildAsStandalone>false</BuildAsStandalone>` from various HardwareIntrinsics tests. This is already the default via Directory.Build.props but interferes with `set BuildAsStandalone=true`.  (nit - also remove an empty `PropertyGroup` from GitHub_43569.csproj)
- [Remove `Main` methods](https://github.com/dotnet/runtime/commit/0a886f8ee12eff9abb6d52391a1c324da6add1e6). We might be able to pursue a strategy where the test author provides a `Main(args)` method for local custom execution. The test would either need a separate parameterless [Fact] method or a [Theory] plus data for `Main` for merged group to execute it. However, a RequiresProcessIsolation/BuildAsStandalone build would ignore that metadata, so I'd like to avoid that complexity. The Main methods here set a bool or parse an int, which can be added locally to any test as needed.
- [Add comment](https://github.com/dotnet/runtime/commit/e79a10c9e397caf90c8342dfea5707b8a35f3b3d) to Directory.Merged.props (addressing feedback on #83462)
- [Add the Methodical test back into the superpmi test](https://github.com/dotnet/runtime/commit/7c61de8574b0995fbd7779987a8eb6a35c059117) using RequiresProcessIsolation

Fixes #76421
Fixes #81984

164 files changed:
src/tests/Directory.Merged.props
src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd.Arm64/AdvSimd.Arm64_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd.Arm64/AdvSimd.Arm64_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd/AdvSimd_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd/AdvSimd_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Aes/Aes.Arm_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Aes/Aes.Arm_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/ArmBase.Arm64/ArmBase.Arm64_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/ArmBase.Arm64/ArmBase.Arm64_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/ArmBase/ArmBase_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/ArmBase/ArmBase_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/ArmBase/Yield_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/ArmBase/Yield_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Crc32.Arm64/Crc32.Arm64_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Crc32.Arm64/Crc32.Arm64_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Crc32/Crc32.Arm_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Crc32/Crc32.Arm_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Dp/Dp_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Dp/Dp_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Rdm.Arm64/Rdm.Arm64_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Rdm.Arm64/Rdm.Arm64_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Rdm/Rdm_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Rdm/Rdm_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Sha1/Sha1_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Sha1/Sha1_ro.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Sha256/Sha256_r.csproj
src/tests/JIT/HardwareIntrinsics/Arm/Sha256/Sha256_ro.csproj
src/tests/JIT/HardwareIntrinsics/General/ConstantFolding/ScalarConstantFoldings.csproj
src/tests/JIT/HardwareIntrinsics/General/ConstantFolding/SimdConstantFoldings.csproj
src/tests/JIT/HardwareIntrinsics/General/HwiOp/CompareVectorWithZero.csproj
src/tests/JIT/HardwareIntrinsics/General/HwiOp/HwiSideEffects.csproj
src/tests/JIT/HardwareIntrinsics/General/HwiOp/HwiValueNumbering.csproj
src/tests/JIT/HardwareIntrinsics/General/NotSupported/NotSupported_r.csproj
src/tests/JIT/HardwareIntrinsics/General/NotSupported/NotSupported_ro.csproj
src/tests/JIT/HardwareIntrinsics/General/Regression/GitHub_43569/GitHub_43569.csproj
src/tests/JIT/HardwareIntrinsics/General/Regression/GitHub_47236/GitHub_47236.csproj
src/tests/JIT/HardwareIntrinsics/General/Regression/GitHub_75791/GitHub_75791.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector128/Vector128_r.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector128/Vector128_ro.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector128_1/Vector128_1_r.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector128_1/Vector128_1_ro.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector256/Vector256_r.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector256/Vector256_ro.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector256_1/Vector256_1_r.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector256_1/Vector256_1_ro.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector512/Vector512_r.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector512/Vector512_ro.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector512_1/Vector512_1_r.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector512_1/Vector512_1_ro.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector64/Vector64_r.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector64/Vector64_ro.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector64_1/Vector64_1_r.csproj
src/tests/JIT/HardwareIntrinsics/General/Vector64_1/Vector64_1_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Aes/Aes_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Aes/Aes_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx1/Avx1_handwritten_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx1/Avx1_handwritten_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx1/Avx1_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx1/Avx1_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx1_Vector128/Avx1_Vector128_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx1_Vector128/Avx1_Vector128_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx2/Avx2_handwritten_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx2/Avx2_handwritten_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx2/Avx2_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx2/Avx2_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx2_Vector128/Avx2_Vector128_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx2_Vector128/Avx2_Vector128_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx512F/Avx512F_handwritten_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx512F/Avx512F_handwritten_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx512F/Avx512F_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Avx512F/Avx512F_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/AvxVnni/MultiplyWideningAndAdd_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/AvxVnni/MultiplyWideningAndAdd_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/AvxVnni_Vector128/MultiplyWideningAndAdd_Vector128_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/AvxVnni_Vector128/MultiplyWideningAndAdd_Vector128_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Bmi1.X64/Bmi1.X64_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Bmi1.X64/Bmi1.X64_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Bmi1/Bmi1_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Bmi1/Bmi1_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Bmi2.X64/Bmi2.X64_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Bmi2.X64/Bmi2.X64_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Bmi2/Bmi2_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Bmi2/Bmi2_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Fma_Vector128/Fma_Vector128_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Fma_Vector128/Fma_Vector128_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Fma_Vector256/Fma_Vector256_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Fma_Vector256/Fma_Vector256_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/General/General_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/General/General_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Lzcnt.X64/Lzcnt.X64_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Lzcnt.X64/Lzcnt.X64_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Lzcnt/Lzcnt_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Lzcnt/Lzcnt_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Pclmulqdq/Pclmulqdq_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Pclmulqdq/Pclmulqdq_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Popcnt.X64/Popcnt.X64_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Popcnt.X64/Popcnt.X64_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Popcnt/Popcnt_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Popcnt/Popcnt_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_17073/GitHub_17073.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_17435/GitHub_17435.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_17957/GitHub_17957_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_17957/GitHub_17957_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_21666/GitHub_21666_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_21666/GitHub_21666_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_21855/GitHub_21855_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_21855/GitHub_21855_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_21899/GitHub_21899.cs
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_21899/GitHub_21899_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_21899/GitHub_21899_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_22815/GitHub_22815_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_22815/GitHub_22815_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_23438/GitHub_23438_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Regression/GitHub_23438/GitHub_23438_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse1.X64/Sse1.X64_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse1.X64/Sse1.X64_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse1/Sse1_handwritten_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse1/Sse1_handwritten_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse1/Sse1_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse1/Sse1_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse2.X64/Sse2.X64_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse2.X64/Sse2.X64_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse2.X64/StoreNonTemporal_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse2.X64/StoreNonTemporal_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse2/Sse2_handwritten_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse2/Sse2_handwritten_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse2/Sse2_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse2/Sse2_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse3/Sse3_handwritten_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse3/Sse3_handwritten_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse3/Sse3_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse3/Sse3_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse41.X64/Sse41.X64_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse41.X64/Sse41.X64_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse41/Sse41_handwritten_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse41/Sse41_handwritten_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse41/Sse41_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse41/Sse41_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse41_Overloaded/Sse41_Overloaded_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse41_Overloaded/Sse41_Overloaded_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse42.X64/Crc32.X64_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse42.X64/Crc32.X64_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse42/Crc32_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse42/Crc32_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse42/Sse42_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Sse42/Sse42_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/Ssse3/Ssse3_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/Ssse3/Ssse3_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Base.X64/X86Base.X64_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Base.X64/X86Base.X64_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Base/CpuId_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Base/CpuId_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Base/Pause_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Base/Pause_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Base/X86Base_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Base/X86Base_ro.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Serialize/Serialize_r.csproj
src/tests/JIT/HardwareIntrinsics/X86/X86Serialize/Serialize_ro.csproj
src/tests/JIT/Methodical/fp/exgen/10w5d_cs_do.csproj
src/tests/JIT/Regression/CLR-x86-JIT/V1-M10/b02352/b02352.cs
src/tests/JIT/Regression/CLR-x86-JIT/V1-M10/b08172/b08172.cs
src/tests/JIT/Regression/CLR-x86-JIT/v2.1/DDB/b49778/b49778.cs
src/tests/JIT/Regression/CLR-x86-JIT/v2.1/b608066/b608066.cs
src/tests/JIT/superpmi/superpmicollect.csproj

index 04c63ce36789170f4996e8fbda1eb0b46c41699f..6bd9586b895731b1c0152d4d35a3b111f36b3eb6 100644 (file)
@@ -3,6 +3,31 @@
     <InMergedTestDirectory>true</InMergedTestDirectory>
     <BuildAsStandalone Condition="'$(BuildAsStandalone)' == ''">false</BuildAsStandalone>
 
+    <!--
+      We need to rewrite the assembly name for some tests in merged groups:
+      1. Merged test groups require consistency between the various names of tests in order
+         to reference them properly.
+      2. IL tests specify the assembly name explicitly in the source file via
+         ".assembly" lines.
+      3. Several tests can use the same IL file but build it with different command line
+         options (_il_d vs _il_r).
+
+      Note that C# tests (which may have _d, _do, _r, and _do variants) do not require this
+      because the assembly name is not embedded in the source file.
+
+      An alternative to the renaming here would be to build the different IL variants with
+      different assembly names. Unfortunately, this isn't supported from the command line.
+      One possible option would be to create an IL source file with something like
+        #define ASSEMBLY_NAME "TESTNAME_il_d"
+      and add it to the _beginning_ of the IL source list (ilasm concatenates all source
+      files). Then change the test to include ".assembly ASSEMBLY_NAME".
+    -->
+    <!--
+      Note that because this file is included from Directory.Build.props (processed before
+      the main project file for a test), the project file can override this.
+      Directory.Build.targets is typically too late as SDK .targets files will have already
+      been processed and may have used the value.
+    -->
     <AssemblyName Condition="'$(BuildAsStandalone)' != 'true'">$(MSBuildProjectName.Replace('_il_d', '').Replace('_il_r', ''))</AssemblyName>
   </PropertyGroup>
 </Project>
index 5ca6505a8b662f3021dd0a547f1fe9f37c839ed2..aacad35ee5fef212518d5508a49309e893e6a76a 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d3a58db15324eeab7725268da0186a47aab848a8..8fdbd934ff92eae7703365332a1327e150e0b363 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 2687de5191369f83d684aee1a098b5921598f024..7374603fc1dd75e01158256a7e8552cedf0872c6 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d7a4cd3f91a4163fc3d629e2614c130b08e61074..623aa40222ca95d3300a73dc6693b9dbfbe3eb5d 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index a6a6abd5c4e9c5dbe271503e18ccfc9a761098df..77bd79cd5880e9ac47f8047d9c8138a298a55346 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index f0f04bae1047b0eabbb9b210359defd1043935b2..7f0d9311afee99e773cd4a1be29de5f2243a7632 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 05adebe76aa22ad1a74b5b395b1319ad86859746..8070235712bc130b78747e8fd41e6ecdc2d738e1 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 4569c342ea8e630b94394a60b60dfabe07542b83..d794f97a8e89573d8c62841bcdb88ac94aca8ace 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 5252ff07259102c697d7c4b92629c43ae3669dce..329d1bbfbdbd4efae19f8ae3440872891218721e 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index a1f4cf5366557304309a91764e2ae667816a7852..e5a7fd1539e3f26077bcff3dbb8c19617f113cf9 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 5f51f64e8728fa1cf57c1cd2d0aef32e44faaf82..715ce9f33d53db51a84116e6e1fc9b11b0245e33 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 7c628281982c5ce36dbbf8b9d5f08811bb29ca17..d70d81b2a40355d3d17271bd8f507169aefd41f0 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 9f7ccb82de28dea0f6c412498c93a49535f83ca0..85ed4490f42a476f571b5c073ca80adeb3c55a08 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 7694d6f3ccfaa30c19787cfecc634071cd6aa82a..9ff20e5827179eae5abc628ce13d4a2efabceacb 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 973ae4dfafdf7f528a8c803e7697b7c790612655..44c9430c3d97daebe438989f614174e2dd3ebd58 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 56748e8c39fa9deb47a6ae08d3ef822c7e1e2c8c..03bcd301b5edeffc0918230cad85fb81b9aff201 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 38cf0aa5b13af825588ccec511715423b3b8e90f..51dee8eb7ab9cb8c2076afbd4b4a6713baaeda55 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index f0fc16d874a9f39f249bb4893652b8acd2f31afd..922cfc36ccbd41d5e50cf461d16dad4946af6b89 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 48a7a031fd2748c602fb42cf24227de1be3d3d5f..fce07f11df7bf213ead37f09574daa976e721b5c 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 72ccde3f2cff84c453ad5c96190f8a1219e444d3..63179d46be8efe905354d12874bfe3a24a425a83 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 9de01c4c606c93f7c67858bc58b1500d68eda018..9692d394ddd616d21847e9198d39b6a567247ec9 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index f1e4a77961b978d7f340a8a626a119b617e8fc1b..6da7c4296686dde7568015e28bc2eafd75488575 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 3230d2b5a7018bf4058313555dc0bddcd9fb65af..7f91b9a1b3df2f7494a67826a08e097a10f8c957 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 7d80817f2d585766931a5b341d7a0796d7121dc1..d82e3a68a286ab399be2a4a9305bc4375d9a00a0 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 05a6af592b80a4e723c92d9a6719916bd9bbef49..2619d8376c93e4b7855b8c8361e65a03fdb00c83 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index ec259bf878e518b3be5db9ac66699fdcbb8f4c9e..3ebe197129d52236aaeb646ea4cc3f9475f31789 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 66d5848a57a0f4ca9e1b73998b2a3334757f4c40..de6d5e08882e868e5f435a07911e8ffeceb7f835 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <Optimize>True</Optimize>
   </PropertyGroup>
   <ItemGroup>
index 66d5848a57a0f4ca9e1b73998b2a3334757f4c40..de6d5e08882e868e5f435a07911e8ffeceb7f835 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <Optimize>True</Optimize>
   </PropertyGroup>
   <ItemGroup>
index 66d5848a57a0f4ca9e1b73998b2a3334757f4c40..de6d5e08882e868e5f435a07911e8ffeceb7f835 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <Optimize>True</Optimize>
   </PropertyGroup>
   <ItemGroup>
index f6fffa3d5a375da8397dfe8ef09770b59537d9df..e1f356e7c9beb69a2d7ecb4e8e94226ec38a156a 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <DebugType>None</DebugType>
     <Optimize>True</Optimize>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
index f6fffa3d5a375da8397dfe8ef09770b59537d9df..e1f356e7c9beb69a2d7ecb4e8e94226ec38a156a 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <DebugType>None</DebugType>
     <Optimize>True</Optimize>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
index d741eaad7bc598ac18bfee3a7d209de702d1d0b7..16d11c2d3c13218dcee99d361bdf72fde6feb137 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 831d8122b2761ff18071e1bd55a6789189c751f9..5ac145ae1a1e7138a2521159bbad5a7c4389ade4 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index c5c9a2230e05b696bd2d2515dc818779330dd725..1814fbab76c5a1cb3723f7788e661454b8dd65af 100644 (file)
@@ -1,7 +1,4 @@
 <Project Sdk="Microsoft.NET.Sdk">
-  <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
-  </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
     <Optimize>True</Optimize>
index 318fa947f522f5de87eba5ad0431a10efe7712a5..95c0a144b92978ffe1c891ab295b4fa6593c256e 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <DebugType>Embedded</DebugType>
     <Optimize>True</Optimize>
   </PropertyGroup>
index 74fe39137ccda2644769a04d57fe2fd16d86ea80..bed97360d4bb1cdc1157e890f5e9cb7d88507071 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <DebugType>Embedded</DebugType>
     <Optimize>True</Optimize>
   </PropertyGroup>
index cf028977b595b165db442ddce93e7d726dd60a21..d51ffc3c458d1b5fdf7eeff5574bd286cb6a1ab1 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index aea795d27ab8ec79d33866cca193e5818098b00f..06a49298bde23355dbd4f7b8213d2f584cac8dd8 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index ecb131b9aa4459fb8933f4250cd07c882182707c..9d2c5cecab940d85b790820b186f8fee9078160e 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 87f9f2ee06335fdddd28507d692d1764875c30db..1bf57a96397ca5673124b8e3259a1514b90e4883 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 1ad7b2601c177e0f40dc8bfff4b1ccca75d67a7f..09b38909db71253d6159a1bc4a0017e5b34e1617 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index daa0b7f4d8c1518a1b7d2498d9b70cd885868f17..b76e7ea9ee3b3720f514a350eb69c65725bf8122 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 031be37c976c3306810596c9b15511c869252bcf..688c23b52914f1c21d0b321270647542ab1ed190 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 
     <!-- https://github.com/dotnet/runtime/issues/57352 -->
index a99b519a5a2b7ce1843e9d735c3ebfef44def2fc..10a0920bb9153006e8293e2c414581653f353187 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 
     <!-- https://github.com/dotnet/runtime/issues/57352 -->
index 8d6eceaa60a0da237f44c6c3a803d5cb5f0a80c4..5bd89c674d2a8754dc739dda536e7fadda98f2bf 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 51c2ea352d587076b2d906c2536ffc07b7df0e22..097a1aef365035f135acb34fc1d699c3a0d09af3 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 94400c3973315eb21de1dc999f11c03ed0a2b6a1..2529fc56bf863185848b090ccf5eed3a934db772 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 26184da1cda7b2534c35fb4e59860ac7519449cb..66c501a722e2d67c96bea3140f24a7b9e37327ad 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d71eca99ae9130ff2d7e414afdaef016d75919b1..bb555014d8ff334570e945d6880fbc48b0c96641 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 0ecd27a1733a37ec565f367bc6518da50b99bb87..f41eecd53c7f4af53eeaa5e9f1a426f4168237c1 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 07d32d1a24b8e6ec8a36d3db1388bb27452adc61..676fb4cfe89b1317e60484265f1ed9bc291bd40b 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 89d71c8f7af65b3caab46694a13e2776db838077..dce5b934909f1d1ddd0f25a93de95063388eb43b 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 0a2dc3c7f8236d2947449f668746bda02afc519b..8343506a900b4f6e33cee399fe7e4584ba9ee370 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Aes_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 22191eec7a3abae582f4150094c993e16324bc1f..8c881b91d05aa698241b6142c3497607155cc495 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Aes_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index a37484c2edcabaebeaa2038dc5f423fd74b76c0b..57a055dbcceddccd51db3e9a518c05a9e8b3b875 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx1_handwritten_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d833efe79ba5dbc126f9accc4c84c5bd8e954b2e..d8dc09ef97adfca06ebc6a8a5d05af4611f21c41 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx1_handwritten_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 0685822a9f870599c13e5e4cedb68e6e44dadc05..2311325c6c5e4e18d6d6f678e657a9a8dc6d5ded 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx1_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index a3a1af88c6dfb413d0faeb2c98e936acd3850482..6e14934cfc5f5bf17a3da6e79136886b42fb19e2 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx1_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index a2bea56154ac5fc5a9d965b57148a3883ed8824c..40bf7b8bdbc13880c00105182ce5be37f0a138db 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx1_Vector128_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index b0ff8671a86f3687404d02188d015b32526835a4..a8502acce2fc779f541c6b64b1bfb5e09e0599df 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx1_Vector128_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 85afe8e6258e199f67386b333324fbbc492ab31b..041c8bee4f78b54b20bdb1d7a305c30229d5a9be 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx2_handwritten_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index ae5c3b80789d2560b1006a1ac0c477dff7d495ba..8a5389bed93818741cfb0be4709fa734aeb2c3e5 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx2_handwritten_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d19c0479ca85bffda927bf3c6a1679ce410e2f6c..05ad6144fbc9b49ac759bcb505422c54694b95bd 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx2_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 7506377dcc2f64fd92c8f4d4dbc8e40b70741dcf..4c7d207b9cb75383569f39125531b3ae6a66df9d 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx2_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index e5b273332547d384c99b8a68330d6fe9d98041fd..60189d430bc8dcbe9047f404efa40418b829b868 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx2_Vector128_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 406a67359d82485a23b2ff7f5db7c51ff8d10b48..f3ad636727a159e021e11114863bb8fbb922949c 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx2_Vector128_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 3409daf6a63e7b816e67c5e68991d5503561aae3..7c5c90edf362c64e905163bf2ade4a084fe93e07 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx512F_handwritten_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 21cf81645b373b3631254b0cb31c36758857be7e..97b545ea4d8d69ce84ba1b34a7c01ed0e88f0359 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx512F_handwritten_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 92f1c39cf18e318da31e42e425be68893147a604..702bd1c87d8acc90699e6f5a9245d126118d182e 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx512F_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index bc5fee89f90fa08dec2a4d1d1f49dbc6df6a78d9..3a9874907aa11fccee5bb8a9f7948ad76129c02e 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Avx512F_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 6f64d59bb5505b8b070366eb37958be193ff6861..ed04e498386336ea224a7dcab31222558cfc1eb6 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_AvxVnni_MultiplyWideningAndAdd_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <!-- It takes a long time to complete (on a non-AVX machine) -->
     <UnloadabilityIncompatible>true</UnloadabilityIncompatible>
index f4b7efb04391d16134711d4cb111bed2abe09702..d866017721ffe20b45f2f595ee4e667cae98c10e 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_AvxVnni_MultiplyWideningAndAdd_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <!-- It takes a long time to complete (on a non-AVX machine) -->
     <UnloadabilityIncompatible>true</UnloadabilityIncompatible>
index 966142392dbcdffbcf11f16c6fffce9b68268b65..548f44eea46162d19082180d072590ebfc54fc11 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_AvxVnni_Vector128_MultiplyWideningAndAdd_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <!-- It takes a long time to complete (on a non-AVX machine) -->
     <UnloadabilityIncompatible>true</UnloadabilityIncompatible>
index a5225bbd42a5fcdff7d13c479f69f28e588a26a6..4d39a7e5831bf720a905d47e780e3aa14cb4e7b0 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_AvxVnni_Vector128_MultiplyWideningAndAdd_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <!-- It takes a long time to complete (on a non-AVX machine) -->
     <UnloadabilityIncompatible>true</UnloadabilityIncompatible>
index 748973626927a33a8b2bdda399387f18823df1d3..34978eb9965f8c3d2753ef904899e0cac91e3dcf 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Bmi1.X64_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 171a1774a71146d25c1f2bb3edae03cae2971bf0..8d741fdc6fbe1a8041ca57ca5eb95a5b4eae7ef2 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Bmi1.X64_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 479bc19cd53e2851f3a7ecf9d843f259193d1a52..5d92df81f749272fa49c93abf9016f5f95bdf3f7 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Bmi1_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index dfa08311f4cec094a74377ddc3aeb1b6d6e7f079..91394e1f07bdb7ada97af01937ed927b722b8646 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Bmi1_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 03fbf2339dcf68e642d91ac3d999f6c88e0e44c5..cf086f09bd03e2c981d4354fd4366aa963ab8dfc 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Bmi2.X64_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 09b012bcce35f04860c58e98544552184a361fe6..7a317b42842a0b47d45ff8baef6c0bf815f7d69e 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Bmi2.X64_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index aa7b054dd25bc49759a051e35ef6d9ce1159fd94..039a641e866d363da210e3ddecc6db08a4a76b47 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Bmi2_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 943e7a8669694f7e09267b16c59d5aadb2a8d54c..a087eac20b8de511344d5b508568e51ca8012394 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Bmi2_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 68583582e4f41951f11aa78535377569a66c0cee..643881b1f9395f25d14360ae5da7cb39043b0fe3 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Fma_Vector128_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 9f6109c554ab1296cb49b558e221f2968cb1e0d9..c8fe829e99d3b992629c6445e14956834b317554 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Fma_Vector128_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 0468450a252c99443a61ee34ad4c9b88d55de233..d48308a905104b1ba5b001b30348c5446adc9d88 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Fma_Vector256_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 5db6bc28ae14aee67b3380ce440cec3fb676b675..d6cec6080689a7ff01b2a50a8439703c565b78ed 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Fma_Vector256_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 14229a13de0727a75e3b859a78d1ad967ea3843c..5e831b724ff0ca718dd100b557fc60d9423a77b4 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_General_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 2e3d2e7d9075eb1f4e8ac1234a344820e985ace8..58203bb4ad29b07bdad190017040482f9ee4fbe6 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_General_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d1fafc55e24f604d51c3b6835aece5e57fa06c04..1d29ce059051683dabdc8439c6196558a4513091 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Lzcnt_x64_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index 36c68ecdad3dddc3374c6beaa91de7e9a701e272..7f8c9fb3d7f7858469ea622a43e56ee461e195f0 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Lzcnt_x64_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index f6e3afded16f46df2f862e338d17deb5319e8905..c9380fece884781f23b6883e336414e9994c5201 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Lzcnt_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index 3f55c02c7b3b6121579a866f89e1c4ee1d9ebdff..7d27178d9b7e26f6ae66e63ea71ca126ed66914d 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Lzcnt_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index 3c0703bcf9000a32057e8478b8eeff5d94cf85af..f974796233b417ebe529777241b93017c8c3fc7b 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Pclmulqdq_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index ac805d7e1e3ca1f664be9db8a753c89246940543..e8231232d3b88855121cfbc0b834f9ed5efca7a8 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Pclmulqdq_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index eab1b9c99798f4c819aa099f265733486b2d1ab5..2a4285e7ee52bb6d25c3bc321e585a1cb5f27831 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Popcnt_x64_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index 9b612ed933b4f189e870ed6ab03e62fffad581db..56c7944b2dff5a18dd2ba67cb291bf9eebdaef84 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Popcnt_x64_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index 8b3a299a48c5ea9466905c293ff59f39b55cbe44..8ba3ac6855b60e6ab3f6ad2c99de89da8a164a1b 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Popcnt_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index f93d540f70b5da129766c1ad7b3f463499f2ca4d..15193101343ca45ea7656832b9db6e5cb91193e1 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Popcnt_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index d99d1a68a8383f4f0591f58d8008c2ba851d3571..91290c165b20899ab6b8bf78fda3e60feedc52d1 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d99d1a68a8383f4f0591f58d8008c2ba851d3571..91290c165b20899ab6b8bf78fda3e60feedc52d1 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 5dbb8284d55073f4948d3c93b64822cdb8930fa8..1ad5f752b1e08c0a5649f04fa02de3838005d21d 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 33afffdb43ad2510df8837ac8961b9aa7526a575..5c0854f9175e3a4011f40164a306ad4389920bbf 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 330bd54e677acf25af1e1ee48095ea43a3eb9ecc..2dca88a1c846bceadfec8c08660e651da43d2cb0 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 85873e19248cb70bd29bbb90af05fa3746c66f58..bd5138604ba5219defa0311491b64c5d91ae3e74 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 3c34d76559b7573880d914df5c58426be43aefe3..6db2514a077a3d7cf93fab4e8602ef8354d9188e 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index e912a7e55f93e3de7b59937c17522d13bb4b51f9..74b16e31e5a00eea5a33c7297f8bb9c46c5ef6b5 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 0580a94b71ed60f23851a083f7003c4453edc1fe..3b1e9e4fa80c395e58fb0cee20dcef4a82b2f372 100644 (file)
@@ -8,9 +8,8 @@ namespace GitHub_21899
 {
     public class GitHub_21899
     {
-
         [Fact]
-        public static int Main()
+        public static int TestEntryPoint()
         {
             bool pass = true;
             pass = test1() && test2() && test3() && test4();
index 1a42d0e8faa0b3a88f97ad986f86b0ba6efa5535..c2357b7d5c46465d5da59c62c95c3b89369ba7fa 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 8b40d242b1735cfea4f0d42b863a207426f2a6b6..3cb2e4f815b0f6a46564b4d249a6622611e10473 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 193722c1f601677cf4fdf8b5676ec5cd201033cf..7ff3b716424c5bfe515b0289220c1f449dbabf46 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 401371d39169147d5c7e073d1d2d76d1313af78b..674bc17b67014af42e7826976b2941f34dbea3b5 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 1ac9e1aeb4b859d26596eed080544b6bfc76c93f..d26db46373a5d95aa68214f970cc7e07b4e19cc2 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index ff8497894c11db76b084f3b4aea9e10b9d492c48..a96cf780d3cb1ccbdf282deef24e16131af8c876 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 225393e8cf84d8daf2412831628a349b700166a6..6fd53947c6cdc4a31aa1ae4fa982c9e9623b610e 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse1.X64_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d9600183ea0b367601d340adaf86e23d1e736def..8121f45cc7ac02893b06566b96a108f62d685a6d 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse1.X64_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 1fcf89622365d9f4949b4cea3d7dae3e8b31da25..7b1920b52d09e1851a1940f5d0f4bdf2c6eba33e 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse1_handwritten_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index b6b3e801ddaece703b793d663512e8413183a9ed..343533b9e3c093c25277487b8899053573b5091e 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse1_handwritten_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 8d7c7f79c04d33de1dc409936845492e976e91f3..f65e46e8bab55b32c7bbe5b6b88d306b378e496c 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse1_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 32dab25b1da5c0d6c69bdf1efb3ac18c24aa60bf..8f035de8906a0564782e95e89893dffeeb9fb9bc 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse1_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 1e283c4188aa86653c6de0345971136f3027b775..af0daee8daeaf6c3522230395a532ea289010c53 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse2.X64_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index da92be9f374d6e597a5a95fa8ae402d700bf7c7c..5ef47270e69f6d4ff5cc6c6135d0a700d240cba7 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse2.X64_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index e6e495f603477a4efd864b7e8d05c946138cff74..55b069e2367c35810065b2ac3e42913380859e77 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse2.X64.StoreNonTemporal_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index ffcfe3c3faea0b3f9cc22bd5eb2d5132ec6b2eba..0fd7c513f12050b75bdf766c6892b25bf3c2b0e1 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse2.X64.StoreNonTemporal_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 1eca1d5abb93775b847596f0a5dc83f99f7a8d8a..1341d89187c61b3a42a4989ee94dc03841f42295 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse2_handwritten_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index e603bea60c8afb964733f6443346b1e333d5af03..a2510723d781fd7220176bda114c7817dc0a9a58 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse2_handwritten_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index ed592b9d5c39a669f1db2c7968935d43e309a9c2..6a121d1f87d598124a9f84e0e37fefdfd96d46c8 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse2_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index bd927c0375a42c592e04f59f4c55c88765a66827..9fa0b5774caeeb5cfc041282447dba23a6e737dd 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse2_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 3ed17e69868dcb6d07ef50305bf685880475c0fa..6c4add06a8c7b4dccb74f4ad2eaf1bab698b6cac 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse3_handwritten_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index db4013ec4e0f9ca7607d226950312bdc731896bd..395568dc47ac4d59bdef548c9d31c174bf9dd780 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse3_handwritten_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 341e4281aad4f8830e802593e93db26bcd7253fe..a1a198fa287808b45ffb6daecd62a33ec404cc05 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse3_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 79943d8fb9c7f012c3526a03f851b32142f1d0bb..c3e7abc0854741bdbc93ba416bf6ebad1f3688e3 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse3_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 9e8ef256f9e2b5583bbd6999311955182bfd0aae..fe54fb628ac8fd682df691b053f5fb88b9116fd1 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse41.X64_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 74aaf8d07208b98af3f98d535ad1742d03da00be..fa09ff8cb2a04889e8b3e39f992dab91bfde9bee 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse41.X64_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 674a28b7841aee1ad9ccf2c37bfb1b8c3f547d3a..4d49a1ba2e72630374a6b9d560a2ba1fe100aceb 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse41_handwritten_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index a5f7f879c64c2223fe7f48e1b055110d95e9ef48..14bfbb96298f666a6cda5c7f0d7f615458c36a2b 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse41_handwritten_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index db39c2073fca917f1f6852d14e81e91aa9446f6b..dba0b84efeac17d1d0e9029726ef5b0ae5ed2010 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse41_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d88973b2b328492942bdbf7fbf00fd137753d0e5..61ba6d840ff80803805ae2de126d8c782f24c0ab 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse41_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 2bd5c6cac3824476e373e5f7f9f09fc1031263e5..9ab3df17146628857755af5ebfc697b215941e92 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse41_Overloaded_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index bef3a40ab08b439031335ceffd2cac59857be5cf..a836fd1d0b98277dee8972c1df4d75bcbe0dc626 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse41_Overloaded_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index d41553e4ba1329372a4189fc0ecff6ea980e6999..f2176424dd4eaff1add081f3f8beaef606ba8f37 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Crc32_X64_handwritten_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index 8b09624085f40857b5ff1cf1a71be3338bb5cce6..b62ebf711776bfe49499aaeb113350d5c4b0863c 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Crc32_X64_handwritten_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index d69319fe45cc407438ba0e3c1ac7a8217f80d05f..0d423ccd0974dfc3ba8482d222b9716b418bf822 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Crc32_handwritten_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index d5734774f3a14761460f60f2926fe16c6c7bb234..e3b4edba3758a88bd419e3bd839350e1b3fec75e 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Crc32_handwritten_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Embedded</DebugType>
index 72029d3a7da3f1ff4624324dd3c644598a376efd..b00e7ce9b296fc95a2165d0cb40681ae0ae83706 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse42_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index fa9a14ffbeec227e0a9ce1ed1758a0ae69bbfa84..438e7f7d9aea1542a26fceb4f587e049bfb469cc 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Sse42_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 14d04a7e6b8d1ffb0bb579242825ff6da4107906..885a2261da330c3fa1c964bba58ef0a10938a7dc 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Ssse3_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index da8d53b68b1ebd0852e2683df0c14fabeffd9024..707650cdbc6d506c8f2d5e76ad2329dcefa557d9 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Ssse3_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index f51cbcee5db903387696a0d5e49322cd2393e8b5..d88c9a41c1697dcd6353d23e5c9bfeda2b88eddf 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_X86Base.X64_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <!-- https://github.com/dotnet/runtime/issues/73454;https://github.com/dotnet/runtime/pull/61707#issuecomment-973122341 -->
     <MonoAotIncompatible>true</MonoAotIncompatible>
index 2fd3b0ea3a2698ad1cebc51b04b4185c5ddc60a8..249f4c6c415104abe090739a5338c65e38919eef 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_X86Base.X64_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <!-- https://github.com/dotnet/runtime/issues/73454;https://github.com/dotnet/runtime/pull/61707#issuecomment-973122341 -->
     <MonoAotIncompatible>true</MonoAotIncompatible>
index 04fa5fadaa33a2732a0b7f764c105d7e087c674b..fc836d9925c89c1e97899ab06834dbca7b8dc2c3 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_CpuId_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 785b1b85e83f5158338c6a8da19db10bad8b2555..847b88361e2bfe13cef309cb489ff67cb1b1879a 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_CpuId_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 7bd35350041070e5bfbaa6f5c74be78a7643d81e..c13a910ab47f155198894e12b4cc8e3b9cb311f7 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Pause_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 
     <!-- https://github.com/dotnet/runtime/issues/73454;https://github.com/dotnet/runtime/pull/61707#issuecomment-973122341 -->
index a2bafa93515310e027c77cc69ed61a7d2219791d..0594f730cc5cb4ddc332391846f38a7669f6677a 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Pause_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 
     <!-- https://github.com/dotnet/runtime/issues/73454;https://github.com/dotnet/runtime/pull/61707#issuecomment-973122341 -->
index b4db08053dcfc9bc3db84088173a2c508b059611..808a20cc2e317cfb19ce99f51faf701cea456ee8 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_X86Base_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <!-- https://github.com/dotnet/runtime/issues/73454;https://github.com/dotnet/runtime/pull/61707#issuecomment-973122341 -->
     <MonoAotIncompatible>true</MonoAotIncompatible>
index 13f9d7ab90504552cd4aac298cddc33c6066af76..298c040bd0853f30804231c7e65f9e285a0d2c69 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_X86Base_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <!-- https://github.com/dotnet/runtime/issues/73454;https://github.com/dotnet/runtime/pull/61707#issuecomment-973122341 -->
     <MonoAotIncompatible>true</MonoAotIncompatible>
index 466703a40b0a8579533ada55859a95d532c034d9..acf1cf58e70f4d12b4bd026671ac8846acdfb9c5 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Serialize_r</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 944b7b265b4e26ccc63c97124470f7de9d1d52c9..24aa11ea31f01ec40665b355b26b32b34bb2b755 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <AssemblyName>X86_Serialize_ro</AssemblyName>
-    <BuildAsStandalone>false</BuildAsStandalone>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
   </PropertyGroup>
   <PropertyGroup>
index 472e6176b5c2c4880405f8133d5d7e3a06290dca..9eff379e0d4559374c13bfb8fca36209ce41e66c 100644 (file)
@@ -1,5 +1,8 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
+    <!-- Needed for JIT/superpmi/superpmicollect.csproj which depends on the
+         individual test .cmd file -->
+    <RequiresProcessIsolation>true</RequiresProcessIsolation>
   </PropertyGroup>
   <PropertyGroup>
     <DebugType>Full</DebugType>
index 925719a86903db2b1d43bd59a0a732b4e4b440cc..ccc2a777dc3883c8dddc2c4c3bd5684262f46027 100644 (file)
@@ -930,8 +930,6 @@ namespace DefaultNamespace
             }
         }
 
-        public static int Main(String[] args) => Run(args.Length > 0 && args[0].Equals("-v"));
-
         [Fact]
         public static int TestEntryPoint() => Run(false);
 
index d283ce7c0d14a99694bb21387fab688736b034fd..2cce77d4dd224f79394a9f5800ca1217c3747c85 100644 (file)
@@ -9,37 +9,15 @@ using Xunit;
 
 public class Test
 {
-    public static int Main(string[] args)
-    {
-        Test app = new Test();
-        app.Run(args);
-        return (100);
-    }
-
     [Fact]
     public static void TestEntryPoint() {
         Test app = new Test();
-        app.Run(new string[0]);
+        app.Run(17);
     }
 
     [MethodImpl(MethodImplOptions.NoInlining)]
-    public int Run(string[] args)
+    public int Run(long i)
     {
-        long i;
-
-        if (args.Length == 0)
-        {
-            i = 17;
-        }
-        else if (args.Length == 1)
-        {
-            i = Convert.ToInt64(args[0]);
-        }
-        else
-        {
-            usage();
-            return (1);
-        }
         Console.Out.WriteLine("Factorial of " + i.ToString() + " is " + Fact(i).ToString());
         return (0);
     }
@@ -50,9 +28,4 @@ public class Test
             return (i);
         return (i * Fact(i - 1L));
     }
-
-    private void usage()
-    {
-        Console.Out.WriteLine("usage: Fact [number]");
-    }
 }
index 4ca8aa0fbf7becb2b14bd0c9a5b7e0c86c0a2028..021260eba34d883d6ae888552d003cbbf9cad8dd 100644 (file)
@@ -167,24 +167,6 @@ public class ReproTwo
     [Fact]
     public static int TestEntryPoint() => Run(0);
 
-    static int Main(String[] args)
-    {
-        try
-        {
-            int val = 0;
-            if (args.Length > 0)
-            {
-                val = Int32.Parse(args[0]);
-            }
-            return Run(val);
-        }
-        catch (Exception e)
-        {
-            Console.WriteLine(e.Message);
-            return 666;
-        }
-    }
-
     [MethodImpl(MethodImplOptions.NoInlining)]
     static int Run(int val)
     {
index 376e3f95be1434549c9cc63886f9d10893bd1c44..78fa44b63aa995668241acdcecf470c672bf86c2 100644 (file)
@@ -166,24 +166,6 @@ public class ReproTwo
     [Fact]
     public static int TestEntryPoint() => Run(0);
 
-    static int Main(String[] args)
-    {
-        try
-        {
-            int val = 0;
-            if (args.Length > 0)
-            {
-                val = Int32.Parse(args[0]);
-            }
-            return Run(val);
-        }
-        catch (Exception e)
-        {
-            Console.WriteLine(e.Message);
-            return 666;
-        }
-    }
-
     [MethodImpl(MethodImplOptions.NoInlining)]
     static int Run(int val)
     {
index 927f4ab0167f1225384fd0ece1effd7e9387f5c7..19a068885a9896be8d978a3a54935e588e29fa41 100644 (file)
   <ItemGroup>
     <_SpmiTestProjects Include="..\Performance\CodeQuality\Bytemark\Bytemark.csproj" />
     <_SpmiTestProjects Include="..\Performance\CodeQuality\Roslyn\CscBench.csproj" />
-    <!-- The reference to 10w5d_cs_do.csproj is commented out due to https://github.com/dotnet/runtime/issues/76421: 
-        merged tests (those built with BuildAsStandalone=false) don't get .cmd/.sh files, which are needed to
-        run the test by the superpmicollect driver.
-    -->
-    <!--
     <_SpmiTestProjects Include="..\Methodical\fp\exgen\10w5d_cs_do.csproj" />
-    -->
+
     <ProjectReference Include="@(_SpmiTestProjects)">
       <Targets>Build</Targets>
       <OutputItemType>_SpmiTest</OutputItemType>