-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathFwLiteProjectSync.Tests.csproj
More file actions
48 lines (48 loc) · 2.38 KB
/
FwLiteProjectSync.Tests.csproj
File metadata and controls
48 lines (48 loc) · 2.38 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
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<Mercurial4ChorusDestDir>$(MSBuildProjectDirectory)</Mercurial4ChorusDestDir>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" />
<PackageReference Include="coverlet.collector">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="GitHubActionsTestLogger">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" />
<PackageReference Include="FluentAssertions" />
<PackageReference Include="Soenneker.Utils.AutoBogus" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="SIL.ChorusPlugin.LfMergeBridge" />
<PackageReference Include="SIL.Chorus.Mercurial" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
<Using Include="FluentAssertions" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FwDataMiniLcmBridge.Tests\FwDataMiniLcmBridge.Tests.csproj" />
<ProjectReference Include="..\FwLiteProjectSync\FwLiteProjectSync.csproj" />
<ProjectReference Include="..\FwLiteWeb\FwLiteWeb.csproj" />
<ProjectReference Include="..\LcmCrdt.Tests\LcmCrdt.Tests.csproj" />
<ProjectReference Include="..\MiniLcm\MiniLcm.csproj" />
</ItemGroup>
<ItemGroup>
<!-- json files get imported by default in web projects, so exclude those here so they aren't imported again below -->
<!-- TODO: Determine if this step is actually necessary -->
<Content Remove="Mercurial\contrib\asv.conf.json" />
<Content Include="Mercurial\**" CopyToOutputDirectory="PreserveNewest" Watch="false" />
<Content Include="MercurialExtensions\**" CopyToOutputDirectory="PreserveNewest" Watch="false" />
</ItemGroup>
</Project>