-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSimdDictionary.csproj
More file actions
35 lines (29 loc) · 1.03 KB
/
SimdDictionary.csproj
File metadata and controls
35 lines (29 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<IsAotCompatible>True</IsAotCompatible>
<IsTrimmable>False</IsTrimmable>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<IsAotCompatible>True</IsAotCompatible>
<IsTrimmable>False</IsTrimmable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Benchmarks\**" />
<Compile Remove="DisasmHarness\**" />
<EmbeddedResource Remove="Benchmarks\**" />
<EmbeddedResource Remove="DisasmHarness\**" />
<None Remove="Benchmarks\**" />
<None Remove="DisasmHarness\**" />
</ItemGroup>
<ItemGroup>
<None Remove="timings.txt" />
</ItemGroup>
</Project>