@Rahul7 You can using action Run Powershell Script for executing it.
Set-Location C:\Projects\NvSearch\bin\Debug\net48\
[void][Reflection.Assembly]::LoadFile("C:\Projects\NvSearch\bin\Debug\net48\NvSearch.dll")
[NvSearch.Class1]::Test("test", 2)
Desciption:
Set-Location C:\Projects\Libs\ - Path to your library folder
[void][Reflection.Assembly]::LoadFile("C:\Projects\Libs\MyLIb.dll") - Path to your library
[LibNamespace.TestClass]::TestMethod("hello", 1) -
LibNamespace - namespace in your lib
TestClass - сlass name
TestMethod - method name in TestClass
("test", 2) - method args
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.