forked from sebastienros/fluid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fluid.Benchmarks.csproj
40 lines (33 loc) · 1.09 KB
/
Fluid.Benchmarks.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<NoWarn>$(NoWarn);NU5104</NoWarn>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="BenchmarkDotNet.Artifacts\**" />
<EmbeddedResource Remove="BenchmarkDotNet.Artifacts\**" />
<None Remove="BenchmarkDotNet.Artifacts\**" />
</ItemGroup>
<ItemGroup>
<None Remove="blogpost.liquid" />
<None Remove="product.liquid" />
<None Remove="product.mustache" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="product.mustache" />
<EmbeddedResource Include="product.liquid" />
<EmbeddedResource Include="blogpost.liquid" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" />
<PackageReference Include="DotLiquid" />
<PackageReference Include="Liquid.NET" />
<PackageReference Include="Scriban" />
<PackageReference Include="Handlebars.Net" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Fluid\Fluid.csproj" />
</ItemGroup>
</Project>