Hi @Mansour_Dalir ,
By default, the Build output path is the directory of the current assembly, assuming that the resource files are located in the subdirectory "Resources" of the current assembly.
Dim assemblyPath As String = Assembly.GetExecutingAssembly().Location
Dim assemblyDirectory As String = Path.GetDirectoryName(assemblyPath)
Dim buildOutputPath As String = assemblyDirectory
Dim resourcesDirectory As String = Path.Combine(assemblyDirectory, "Resources")
Best Regards.
Jiachen Li
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.