diff --git a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md
index 5599d4a2f..da168c46b 100644
--- a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md
+++ b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md
@@ -1546,5 +1546,26 @@ N> We have option to exclude the default Blink binaries from the installation pa
+{% endhighlight %}
+{% endtabs %}
+
+## How to Exclude BlinkBinaries or Runtime Files in Build or Deployment
+
+The runtime files, or blink binaries, will be copied into a bin or published folder while building and publishing the application.
+By including the native option in the package reference of the csproj file, you can exclude the runtime files or blink binaries from being copied into the bin or publish folder while building and publishing the application. But you need to place the BlinkBinaries in the server disk and set the BlinkPath in the BlinkConverterSettings to perform the conversion.
+
+N> Using this approach, you can reduce the deployment size on your own servers.
+
+Refer to the following package reference:
+
+{% tabs %}
+{% highlight C# %}
+
+
+
+ native
+
+
+
{% endhighlight %}
{% endtabs %}
\ No newline at end of file