-
Notifications
You must be signed in to change notification settings - Fork 4
/
StagingAreaTests.fsproj
41 lines (35 loc) · 1.54 KB
/
StagingAreaTests.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<None Include="playground.fsx" />
<Content Include="..\StagingArea\**" CopyToOutputDirectory="Always" LinkBase="StagingArea" />
<Compile Include="Utils.fs" />
<Compile Include="ReferenceObjects.fs" />
<Compile Include="DirectoryContentTests.fs" />
<Compile Include="FileContentTests.fs" />
<Compile Include="PackageSanityChecks.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Fake.DotNet.Cli" Version="[6.0.0]" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\AVPRIndex\AVPRIndex.fsproj" />
<ProjectReference Include="..\tests\IndexTests\IndexTests.fsproj" />
</ItemGroup>
</Project>