Hello Asif !
Thank you for posting on Microsoft Learn.
You’need to update your .csproj file to explicitly include these files with correct build and publish instructions.
Open your the .csproj file and add an ItemGroup like this:
<ItemGroup>
<Content Include="YourFolder\*.pnn">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>
If the .pnn files are in the project root folder, simplify like:
<ItemGroup>
<Content Include="*.pnn">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>
Don't forget to rebuild your solution in Visual Studio and re-publish your Function App.