How would i build installer in my project?

后端 未结 1 1176
终归单人心
终归单人心 2021-01-27 15:34

i was having error while making the installer in my program. I have images inside the debug folder and i use those images in my program. I successfully create the installer the

1条回答
  •  无人及你
    2021-01-27 16:21

    If this is a VisualStudio setup project, make sure that you:

    • include your Images folder and the images in it in your solution
    • make sure you set BuildAction property for all images you need to Content
    • let your setup project also install content from the right project to the correct place in the file system where your application expects these images
    • build you setup project and test if the installer installs the images as expected

    (This is just a quick answer to perhaps get you started in the right direction. Your question doesn't seem all that clear, so perhaps I misunderstood the problem you're having completely.)

    0 讨论(0)
提交回复
热议问题