so I created a class library project and put my SQLite DB in itand set these lines in .csproj file
<ItemGroup><Content Include="Data\DataBase\locations.db"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content></ItemGroup>
if I locally reference that class library to my main project (asp ore) its works fine and on every build, it will copy the DB file to the below dir
***\bin\Debug\net5.0\Data\DataBase
and it works fine
but when I publish the class library to NuGetand install it on my main project it doesn't copy the file
any help why this is happening and what should I do
this is my package in NuGet package explorer