Dependencies are missing in output directory

Hi,
I currently have the problem, that for a project, I don't get the dependencies in the output directory, and thus errors when starting because of the missing dependency

I honestly have no idea what the problem is...

<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
 
  <ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.31.1" />
<PackageReference Include="Grpc.Net.Client" Version="2.71.0" />
<PackageReference Include="Grpc.Tools" Version="2.72.0">
 
      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
 
 
  <ItemGroup>
<Protobuf Include="protobuf-definitions\services.proto" GrpcServices="Both" />
</ItemGroup>
 
</Project>
Was this page helpful?