-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
47 lines (41 loc) · 2.14 KB
/
Copy pathDirectory.Packages.props
File metadata and controls
47 lines (41 loc) · 2.14 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
<Project>
<!-- Central Package Management: every NuGet version is pinned here; project
files reference packages by name only. See Directory.Build.props for
shared build properties. -->
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<!-- First-party libraries. Graph1x is the only graph dependency; all graph
structure and analysis go through it, behind IStoryGraph in Infrastructure. -->
<ItemGroup>
<PackageVersion Include="Graph1x" Version="1.0.1" />
</ItemGroup>
<!-- Persistence stack (Phase 2), Infrastructure-only: SqlBound + Dapper over
Microsoft.Data.Sqlite, behind IStoryRepository / IAssetStore. First
referenced in M7; declared here now as the Phase 2 dependency baseline.
These versions are inert until a project references them. SqlBound is a
prerelease (design §3 pins 1.0.0-rc.1). -->
<ItemGroup>
<PackageVersion Include="SqlBound" Version="1.0.0-rc.1" />
<PackageVersion Include="SqlBound.Generators" Version="1.0.0-rc.1" />
<PackageVersion Include="SqlBound.Migrations" Version="1.0.0-rc.1" />
<PackageVersion Include="SqlBound.Sqlite" Version="1.0.0-rc.1" />
<PackageVersion Include="Dapper" Version="2.1.79" />
<PackageVersion Include="Microsoft.Data.Sqlite" Version="10.0.10" />
</ItemGroup>
<!-- Test stack. -->
<ItemGroup>
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageVersion Include="xunit.v3" Version="3.2.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.4" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
</ItemGroup>
<!-- Component test stack (Phase 3), Web.UnitTests-only: bUnit renders Blazor
components in-process so inspector and validation-panel behaviour is
testable without a browser (design §7). bUnit 2.x consolidated the v1
bunit.core / bunit.web / bunit.xunit split into this single package, so
there is no framework-specific companion to reference for xunit v3. -->
<ItemGroup>
<PackageVersion Include="bunit" Version="2.8.6" />
</ItemGroup>
</Project>