Greetings.
I have dub project with "targetType": "dynamicLibrary". When i run dub test it fails with message "Error executing command test: Command failed with exit code 1".
I think that the file __test__library__.exe actually dll, because I have a def-file (see Windows dll def-file ignored.).
I try to add
	"buildTypes": {
		"unittest": {
			"buildOptions": ["unittests", "debugMode", "debugInfo"],
			"excludedSourceFiles": ["*.def"]
		}
to dub.json, but still have def-file on link stage.
Thank you.