I am using NANT latest nightly build on my machine successfully with .NET 1.1 framework.
However, some other people in my group who have very similar machines with .NET framework 1.1 installed are getting the following error :
"The SDK directory for the net-1.0 framework is not available or not configured."
This error comes when they try to build a .NET project using
<?xml version="1.0"?>
<project name="MyProj" default="compile_debug">
<target name="compile_debug" description="Build the debug configuration">
<solution solutionfile="${build_dir}\MyProj.sln" configuration="debug">
<verbose/>
</solution>
</target>
</project>
Note that the solution can be built successfully using Visual Studio .Net 2003 on those machines and the framework 1.1 configuration is also set-up correctly (AFAIK). (perviously they had 1.0 installed).
Is there anything special needed to run solution task under NANT ?
Thanks,
- Umesh
