NPanday.Plugin.Msbuild.JavaBinding plugin does not support framework version 2.0
--------------------------------------------------------------------------------
Key: NPANDAY-438
URL: https://issues.apache.org/jira/browse/NPANDAY-438
Project: NPanday
Issue Type: Bug
Affects Versions: 1.4-incubating
Reporter: Adelita L. Padilla
Priority: Minor
Fix For: 1.4.1-incubating
Steps to reproduce:
1) Create a VS 2010 web application project with a 2.0 .Net Framework
2) Add a resource file to the project
3) Generate POM files
4) Build project
Actual Behavior:
Unable to build project successfully:
{quote}
Microsoft (R) Build Engine Version 2.0.50727.4927
[Microsoft .NET Framework, Version 2.0.50727.4959]
Copyright (C) Microsoft Corporation 2005. All rights reserved.
C:\Program Files
(x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.targets(412,3):
error MSB4067: The element <ItemDefinitionGroup> beneath element <Project> is
unrecognized.
Exception occcurred: System.Exception: MSBuild exited with code: 1
at NPanday.Plugin.Msbuild.MsbuildMojo.Execute()
at NPanday.Plugin.AbstractMojo.Execute()
at NPanday.Plugin.Loader.PluginLoader.Main(String[] args)
NPanday: End Process = 5/31/2011 6:26:00 PM; exit code = 1
{quote}
\\
To be able to have a successful build I manually added this in Environment
Variables:
{quote}
Variable name: MSBuildExtensionsPath32
Variable value: C:\Program Files (x86)\MSBuild\
{quote}
Then add:
{quote}
%MSBuildExtensionsPath32%
{quote}
to variable name 'PATH'.
Then I manually revised the .csproj with the ff:
{quote}
<Import
Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets"
/>
{quote}
to
{quote}
<Import
Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v8.0\WebApplications\Microsoft.WebApplication.targets"
/>
{quote}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira