How to include other files to the output directory in C# upon build?

前端 未结 2 669
一生所求
一生所求 2020-11-30 06:15

I have some library files needed for my application to work.
My application has a setup and deployment included.

I already know that in order for a library file

2条回答
  •  旧巷少年郎
    2020-11-30 07:03

    You can use Visual Studio Post Build Event - Copy to Relative Directory Location. Which are basically scripts that are executed on build of specified project.

    So you can use it to copy binaries you need, before actually running your application.

提交回复
热议问题