forked from sebastienros/fluid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fluid.Tests.csproj
25 lines (21 loc) · 943 Bytes
/
Fluid.Tests.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<DefineConstants Condition="'$(Compiled)' == 'true'">$(DefineConstants);COMPILED</DefineConstants>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.visualstudio" />
<PackageReference Include="xunit.analyzers" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Fluid.MvcViewEngine\Fluid.MvcViewEngine.csproj" />
<ProjectReference Include="..\Fluid.ViewEngine\Fluid.ViewEngine.csproj" />
<ProjectReference Include="..\Fluid\Fluid.csproj" />
</ItemGroup>
</Project>