Package Code plugin for artists

I am currently trying to create a code plugin to use on multiple of our projects. I also want to package it so that I can give it to our artists, they don’t have Visual Studio installed etc., and cannot build the plugin themselves. So it needs to run like the marketplace plugins if that makes sense.

I’ve created a code plugin (CleanPlugin) from the default code template, and tried to package it via the package button in the plugins tab. But when I include the plugin in the project via the plugins folder, they receive the following error when trying to start up the project.

Plugin CleanPlugin failed to load because module ‘CleanPlugin’ could not
be loaded. There may be an operating
system error or the module may not be
properly set up

I’ve played around with the build.cs and the .uplugin file, changed a few settings but nothing seems to work. The important section in the .uplugin file seemed to be this section that I’ve added.

  "Modules": [
    {
      "Name": "CleanPlugin",
      "Type": "Runtime",
			"LoadingPhase": "PreDefault",
			"WhitelistPlatforms": [
				"Win64",
				"Win32"
			]
    }

Could I be missing something really stupid here?

It was something really stupid indeed. The plugin and everything was 100%. The artists didn’t have the latest Microsoft Visual C++ Redistributable installed…