-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTreeStore.PsModule.Test.csproj
More file actions
30 lines (27 loc) · 1.22 KB
/
TreeStore.PsModule.Test.csproj
File metadata and controls
30 lines (27 loc) · 1.22 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LiteDB" Version="5.0.13" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Moq" Version="4.13.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\TreeStore.LiteDb\TreeStore.LiteDb.csproj" />
<ProjectReference Include="..\..\src\TreeStore.Messaging\TreeStore.Messaging.csproj" />
<ProjectReference Include="..\..\src\TreeStore.Model\TreeStore.Model.csproj" />
<ProjectReference Include="..\..\src\TreeStore.PsModule\TreeStore.PsModule.csproj" />
</ItemGroup>
</Project>