Explicitly add package references

This avoids the issue of having passthrough package references that then break later if moved or changed.
This commit is contained in:
Matt Nadareski
2024-10-23 23:54:42 -04:00
parent 8329d16b8c
commit ae4c8cd4c8

View File

@@ -35,10 +35,6 @@
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.10" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\SabreTools.Core\SabreTools.Core.csproj" /> <ProjectReference Include="..\SabreTools.Core\SabreTools.Core.csproj" />
<ProjectReference Include="..\SabreTools.Help\SabreTools.Help.csproj" /> <ProjectReference Include="..\SabreTools.Help\SabreTools.Help.csproj" />
@@ -46,10 +42,9 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Folder Include="Properties\" /> <PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.10" />
</ItemGroup> <PackageReference Include="SabreTools.Hashing" Version="1.2.1" />
<PackageReference Include="SabreTools.IO" Version="1.4.12" />
<ItemGroup>
<PackageReference Include="SabreTools.Skippers" Version="1.1.2" /> <PackageReference Include="SabreTools.Skippers" Version="1.1.2" />
</ItemGroup> </ItemGroup>