-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathbuckaroo-tests.fsproj
More file actions
39 lines (39 loc) · 1.51 KB
/
buckaroo-tests.fsproj
File metadata and controls
39 lines (39 loc) · 1.51 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<DefineConstants>OS_WINDOWS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../buckaroo/buckaroo.fsproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="Glob.fs" />
<Compile Include="SemVer.fs" />
<Compile Include="Version.fs" />
<Compile Include="Constraint.fs" />
<Compile Include="Target.fs" />
<Compile Include="Dependency.fs" />
<Compile Include="PackageIdentifier.fs" />
<Compile Include="Manifest.fs" />
<Compile Include="Solver.fs" />
<Compile Include="Bash.fs" />
<Compile Include="Lock.fs" />
<Compile Include="Paths.fs" />
<Compile Include="Git.fs" />
<Compile Include="Command.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FParsec" Version="1.0.3" />
<PackageReference Include="FSharp.Data" Version="3.0.0" />
<PackageReference Include="LibGit2Sharp" Version="0.25.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
<PackageReference Include="Nett" Version="0.9.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
</Project>