cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
PauSetup
Level 3

warning -1527: No files are included in the project.

Hello,

This ZIP file contains a Windows Forms solution and a ISLE Project https://dl.dropbox.com/u/6286874/temp/WindowsApplication1.zip

When I build it using IDE, it works. However, this warning appears when I build it using “msbuild.exe”:

warning : -1527: No files are included in the project.

The attached file also contains the full msbuild log file and the MSI file generated (that doesnt work).

Why this InstallShield project does not work?
0 Kudos
(2) Replies
SwethaRao
Level 7

Hello,

This warning occurs when you have not included any files in your project.

Kindly use the Files and Folders view to add files into your project to avoid this warning.

Thanks,
Swetha Rao

InstallShield Support Engineer
0 Kudos
Shekar
Level 7

It looks like the MSBuild is trying to use .Net Framework 3.5; however, .Net Framework 3.5 is not installed on the system.
You can check which version of .NET Framework is installed on the build system and try setting the ToolVersion element in the .isproj file accordingly.
For instance, if .NET Framework 4.0 is installed on the build system, then change the *.isproj file is from ToolsVersion="3.5" to ToolsVersion="4.0
0 Kudos