28 lines
1.3 KiB
Diff
28 lines
1.3 KiB
Diff
From 79f02a53316f90543d60269d7c06727c376f423b Mon Sep 17 00:00:00 2001
|
|
From: Antoine Martin <dev@ayakael.net>
|
|
Date: Wed, 24 Aug 2022 18:41:08 +0000
|
|
Subject: [PATCH 1/1] disable apphost usage
|
|
|
|
Roslyn-analyzer can't seem to find apphost produced by runtime build on ppc64le
|
|
This disables its use as it isn't necessary
|
|
|
|
---
|
|
diff --git a/src/roslyn-analyzers/src/PerformanceTests/Tests/PerformanceTests.csproj.orig b/src/roslyn-analyzers/src/PerformanceTests/Tests/PerformanceTests.csproj
|
|
index 7b454a4..bbe18ae 100644
|
|
--- a/src/roslyn-analyzers/src/PerformanceTests/Tests/PerformanceTests.csproj.orig
|
|
+++ b/src/roslyn-analyzers/src/PerformanceTests/Tests/PerformanceTests.csproj
|
|
@@ -16,6 +16,7 @@
|
|
<IsPackable>false</IsPackable>
|
|
<ExcludeFromSourceBuild>true</ExcludeFromSourceBuild>
|
|
<MicrosoftCodeAnalysisVersion>$(MicrosoftCodeAnalysisVersionForTests)</MicrosoftCodeAnalysisVersion>
|
|
+ <UseAppHost>false</UseAppHost>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="$(BenchmarkDotNetVersion)" />
|
|
@@ -28,4 +29,4 @@
|
|
<ProjectReference Include="..\Utilities\CSharp\CSharpPerfUtilities.csproj" />
|
|
<ProjectReference Include="..\Utilities\VisualBasic\VisualBasicPerfUtilities.csproj" />
|
|
</ItemGroup>
|
|
-</Project>
|
|
\ No newline at end of file
|
|
+</Project>
|