-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeddle.Performance.csproj
More file actions
96 lines (93 loc) · 4.67 KB
/
Copy pathHeddle.Performance.csproj
File metadata and controls
96 lines (93 loc) · 4.67 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Version>2.0.0</Version>
<TargetFrameworks>net6.0;net8.0;net10.0</TargetFrameworks>
<TieredCompilation>true</TieredCompilation>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\heddle.snk</AssemblyOriginatorKeyFile>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Heddle\Heddle.csproj" />
</ItemGroup>
<!-- ThirdParty/ is a self-contained nested project (the D3-R3 fallback harness) with its own
.csproj. Exclude its subtree from this project's default globs so its sources/obj are not
swept into this assembly. -->
<ItemGroup>
<Compile Remove="ThirdParty\**" />
<EmbeddedResource Remove="ThirdParty\**" />
<None Remove="ThirdParty\**" />
<Content Remove="ThirdParty\**" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.36" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.Extensions" Version="6.0.36" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.36" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.29" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.29" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net10.0' ">
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="10.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.10" />
</ItemGroup>
<!-- BenchmarkDotNet is pinned per-TFM: 0.15.1+ depends on System.Management 9.x and
Microsoft.CodeAnalysis 4.14, which dropped net6.0 support (NETSDK "doesn't support net6.0"
warnings). The net6.0 leg uses 0.15.0, the last version whose dependency closure still
supports net6.0; net8.0/net10.0 use the current pin. -->
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<PackageReference Include="BenchmarkDotNet" Version="0.15.0" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' != 'net6.0' ">
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<!-- Scriban is a net8.0+/net10.0-only competitor (maintainer-approved 2026-07-19): 7.2.5 —
the only release with the 2026 GHSA advisory fixes — requires System.Text.Json 10, which
dropped net6.0; older Scriban versions carry the unfixed advisories. The Scriban twins are
compiled out of the net6.0 leg with `#if !NET6_0` rather than suppressing either warning. -->
<PackageReference Include="Scriban" Version="7.2.5" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<!-- D1 competitor benchmark twins (bench project only; engine gains no dependencies). Versions pinned. -->
<ItemGroup>
<PackageReference Include="Fluid.Core" Version="2.31.0" />
<PackageReference Include="DotLiquid" Version="2.3.197" />
<PackageReference Include="Handlebars.Net" Version="2.1.6" />
</ItemGroup>
<ItemGroup>
<Folder Include="TestSuite\Data\" />
</ItemGroup>
<ItemGroup>
<None Remove="Views\home.cshtml" />
<Content Include="Views\home.cshtml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="Views\layout.cshtml" />
<Content Include="Views\layout.cshtml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="TestTemplates\home.heddle" />
<Content Include="TestTemplates\home.heddle">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="TestTemplates\layout.heddle" />
<Content Include="TestTemplates\layout.heddle">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="TestTemplates\trivial-substitution.heddle" />
<Content Include="TestTemplates\trivial-substitution.heddle">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="TestTemplates\large-loop.heddle" />
<Content Include="TestTemplates\large-loop.heddle">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>