-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathVSharp.Solver.fsproj
More file actions
35 lines (28 loc) · 1.09 KB
/
VSharp.Solver.fsproj
File metadata and controls
35 lines (28 loc) · 1.09 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>net7.0</TargetFramework>
<Configurations>Debug;Release;DebugTailRec</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<Tailcalls>false</Tailcalls>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'DebugTailRec' ">
<Tailcalls>true</Tailcalls>
<DebugSymbols>true</DebugSymbols>
<DefineConstants>TRACE;DEBUG</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="Cache.fs" />
<Compile Include="Z3.fs" />
<Compile Include="SolverPool.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VSharp.SILI.Core\VSharp.SILI.Core.fsproj" />
<ProjectReference Include="..\VSharp.Utils\VSharp.Utils.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="7.0.*" />
<PackageReference Include="VSTeam.Z3" Version="4.11.2-alpha" />
</ItemGroup>
</Project>