From adc91c1edc35768c5f32ab13e5cd31ac4463dfea Mon Sep 17 00:00:00 2001 From: glax Date: Mon, 29 Jul 2024 01:38:45 +0200 Subject: [PATCH] [SupportedOSPlatfor ("Windows")] Benchmark.cs --- Graph_Renderer/Benchmark.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Graph_Renderer/Benchmark.cs b/Graph_Renderer/Benchmark.cs index d05bce7..b8c18a0 100644 --- a/Graph_Renderer/Benchmark.cs +++ b/Graph_Renderer/Benchmark.cs @@ -1,9 +1,11 @@ -using astar; +using System.Runtime.Versioning; +using astar; using astar.PathingHelper; using Microsoft.Extensions.Logging; namespace Graph_Renderer; +[SupportedOSPlatform("Windows")] public static class Benchmark { public static void Run(float startLat, float startLon, float endLat, float endLon, float regionSize, string importPath, string exportPath, ILogger? logger = null)