Author: apadilla
Date: Fri Nov 12 08:30:50 2010
New Revision: 1034293
URL: http://svn.apache.org/viewvc?rev=1034293&view=rev
Log:
* updated docs for VS 2010 and .NET 4.0 support
* changed urls for source repos
Modified:
incubator/npanday/trunk/site/src/site/apt/developers/building.apt.vm
incubator/npanday/trunk/site/src/site/apt/developers/debugging-addin.apt
incubator/npanday/trunk/site/src/site/apt/guide/installation/index.apt.vm
Modified: incubator/npanday/trunk/site/src/site/apt/developers/building.apt.vm
URL:
http://svn.apache.org/viewvc/incubator/npanday/trunk/site/src/site/apt/developers/building.apt.vm?rev=1034293&r1=1034292&r2=1034293&view=diff
==============================================================================
--- incubator/npanday/trunk/site/src/site/apt/developers/building.apt.vm
(original)
+++ incubator/npanday/trunk/site/src/site/apt/developers/building.apt.vm Fri
Nov 12 08:30:50 2010
@@ -32,14 +32,14 @@ Building NPanday
* Checking out the Source Code
- You can check out the latest source code from
{{https://npanday.svn.codeplex.com/svn/trunk}}. You can also
+ You can check out the latest source code from
{{https://svn.apache.org/repos/asf/incubator/npanday/trunk}}. You can also
download a previous version as an archive from the web site, or from check
it out from the subdirectory of
- {{https://npanday.svn.codeplex.com/svn/tags}}.
+ {{https://svn.apache.org/repos/asf/incubator/npanday/tags}}.
For example:
----
-svn co https://npanday.svn.codeplex.com/svn/trunk npanday
+svn co https://svn.apache.org/repos/asf/incubator/npanday/trunk npanday
----
* Enabling additional Remote Repositories
@@ -103,12 +103,12 @@ mvn clean install -PintegrationTests
The Maven command line plugins feature a series of integration tests to
ensure that everything is working as
expected. They can be obtained by checking out the source code at
- {{https://npanday.svn.codeplex.com/svn/npanday-its/trunk}}.
+ {{https://svn.apache.org/repos/asf/incubator/npanday/npanday-its/trunk}}.
For example:
----
-svn co https://npanday.svn.codeplex.com/svn/npanday-its/trunk npanday-its
+svn co https://svn.apache.org/repos/asf/incubator/npanday/npanday-its/trunk
npanday-its
----
From within that directory, you can run it against the latest available
version of NPanday (likely the one you have
Modified:
incubator/npanday/trunk/site/src/site/apt/developers/debugging-addin.apt
URL:
http://svn.apache.org/viewvc/incubator/npanday/trunk/site/src/site/apt/developers/debugging-addin.apt?rev=1034293&r1=1034292&r2=1034293&view=diff
==============================================================================
--- incubator/npanday/trunk/site/src/site/apt/developers/debugging-addin.apt
(original)
+++ incubator/npanday/trunk/site/src/site/apt/developers/debugging-addin.apt
Fri Nov 12 08:30:50 2010
@@ -20,7 +20,7 @@ Debugging the Visual Studio Add-in
[[4]] Open this file using a text editor (notepad will do):
<<<My Documents\Visual Studio
2005\Addins\NPanday.VisualStudio.AddIn>>>. This should be the file for the
- version of Visual Studio you intend to debug it in, so change 2005
to 2008 if desired (it need not be the same
+ version of Visual Studio you intend to debug it in, so change 2005
to 2008/2010 if desired (it need not be the same
as the one you have the main solution open in).
[[5]] Change the value of the <<<\<Extensibility\>\<AddIn\>\<Assembly\>>>>
to the following file within your
@@ -34,6 +34,7 @@ Debugging the Visual Studio Add-in
[[8]] Go to the Debug tab and select <Start External Program> in the
<Action> section. Locate the <<<devenv.exe>>>
of the version of Visual Studio that you want to debug. This is
likely to be either
+ <<<C:\Program Files\Microsoft Visual Studio
10.0\Common7\IDE\devenv.exe>>> (Visual Studio 2010) or
<<<C:\Program Files\Microsoft Visual Studio
9.0\Common7\IDE\devenv.exe>>> (Visual Studio 2008) or
<<<C:\Program Files\Microsoft Visual Studio
8.0\Common7\IDE\devenv.exe>>> (Visual Studio 2005)
Modified:
incubator/npanday/trunk/site/src/site/apt/guide/installation/index.apt.vm
URL:
http://svn.apache.org/viewvc/incubator/npanday/trunk/site/src/site/apt/guide/installation/index.apt.vm?rev=1034293&r1=1034292&r2=1034293&view=diff
==============================================================================
--- incubator/npanday/trunk/site/src/site/apt/guide/installation/index.apt.vm
(original)
+++ incubator/npanday/trunk/site/src/site/apt/guide/installation/index.apt.vm
Fri Nov 12 08:30:50 2010
@@ -56,10 +56,10 @@ Preparation
The correct PATH should include the following:
- * The .NET framework runtime(s) - all that are needed
(<<<C:\WINDOWS\Microsoft.NET\Framework\v3.5>>> and/or
+ * The .NET framework runtime(s) - all that are needed
(<<<C:\Windows\Microsoft.NET\Framework\v4.0.30319>>> and/or
<<<C:\WINDOWS\Microsoft.NET\Framework\v3.5>>> and/or
<<<C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>>>)
- * The .NET SDK - only the latest (<<<C:\Program Files\Microsoft
SDKs\Windows\v6.0A\bin>>> or
+ * The .NET SDK - only the latest (<<<C:\Program Files (x86)\Microsoft
SDKs\Windows\v7.0A\bin\NETFX 4.0 Tools>>> or <<<C:\Program Files\Microsoft
SDKs\Windows\v6.0A\bin>>> or
<<<C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin>>> or other
location if installed aside from
Visual Studio)
@@ -95,6 +95,16 @@ Visual Studio 2008
Found here: (x86:
{{{http://www.microsoft.com/downloads/details.aspx?FamilyID=fe6f2099-b7b4-4f47-a244-c96d69c35dec&displaylang=en}
.NET 2.0 SDK}})
+Visual Studio 2010
+
+ Add the following to the path:
+
+----
+C:\Windows\Microsoft.NET\Framework\v4.0.30319;
+C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\NETFX 4.0 Tools;
+----
+
+
Obtaining NPanday
NPanday releases are made available in two locations:
@@ -208,7 +218,7 @@ Installing the Visual Studio Add-in usin
After running the installer the add-in will be located here:
<<<C:\\Documents and Settings\\[user_home]\\My Documents\\Visual Studio
2005\\Addins\\NPanday.VisualStudio.AddIn>>>
- (or equivalent for Visual Studio 2008).
+ (or equivalent for Visual Studio 2008 or equivalent for Visual Studio 2010).
You can verify that the Maven plugins are also installed correctly by
following the same steps as shown in the previous section.