You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by br...@apache.org on 2011/12/23 03:47:57 UTC

svn commit: r1222543 [3/4] - in /incubator/npanday/npanday-its/trunk: ./ src/test/java/npanday/its/ src/test/resources/NPANDAY_465_AspxDisablePrecompilationTest/ src/test/resources/NPANDAY_465_AspxDisablePrecompilationTest/Properties/ src/test/resource...

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/Properties/AssemblyInfo.cs?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/Properties/AssemblyInfo.cs (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/Properties/AssemblyInfo.cs Fri Dec 23 03:47:55 2011
@@ -1,36 +1,36 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following 
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("HelloWorld_WorkerRole")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("HelloWorld_WorkerRole")]
-[assembly: AssemblyCopyright("Copyright ©  2011")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible 
-// to COM components.  If you need to access a type in this assembly from 
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("0dc79ec7-d999-4d0f-9b2b-a0812f3d0d2f")]
-
-// Version information for an assembly consists of the following four values:
-//
-//      Major Version
-//      Minor Version 
-//      Build Number
-//      Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers 
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following 
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("HelloWorld_WorkerRole")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("HelloWorld_WorkerRole")]
+[assembly: AssemblyCopyright("Copyright ©  2011")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible 
+// to COM components.  If you need to access a type in this assembly from 
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("0dc79ec7-d999-4d0f-9b2b-a0812f3d0d2f")]
+
+// Version information for an assembly consists of the following four values:
+//
+//      Major Version
+//      Minor Version 
+//      Build Number
+//      Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers 
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/Properties/AssemblyInfo.cs
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/WorkerRole.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/WorkerRole.cs?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/WorkerRole.cs (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/WorkerRole.cs Fri Dec 23 03:47:55 2011
@@ -1,39 +1,39 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using System.Net;
-using System.Threading;
-using Microsoft.WindowsAzure;
-using Microsoft.WindowsAzure.Diagnostics;
-using Microsoft.WindowsAzure.ServiceRuntime;
-using Microsoft.WindowsAzure.StorageClient;
-
-namespace HelloWorld_WorkerRole
-{
-    public class WorkerRole : RoleEntryPoint
-    {
-        public override void Run()
-        {
-            // This is a sample worker implementation. Replace with your logic.
-            Trace.WriteLine("$projectname$ entry point called", "Information");
-
-            while (true)
-            {
-                Thread.Sleep(10000);
-                Trace.WriteLine("Working", "Information");
-            }
-        }
-
-        public override bool OnStart()
-        {
-            // Set the maximum number of concurrent connections 
-            ServicePointManager.DefaultConnectionLimit = 12;
-
-            // For information on handling configuration changes
-            // see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.
-
-            return base.OnStart();
-        }
-    }
-}
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Net;
+using System.Threading;
+using Microsoft.WindowsAzure;
+using Microsoft.WindowsAzure.Diagnostics;
+using Microsoft.WindowsAzure.ServiceRuntime;
+using Microsoft.WindowsAzure.StorageClient;
+
+namespace HelloWorld_WorkerRole
+{
+    public class WorkerRole : RoleEntryPoint
+    {
+        public override void Run()
+        {
+            // This is a sample worker implementation. Replace with your logic.
+            Trace.WriteLine("$projectname$ entry point called", "Information");
+
+            while (true)
+            {
+                Thread.Sleep(10000);
+                Trace.WriteLine("Working", "Information");
+            }
+        }
+
+        public override bool OnStart()
+        {
+            // Set the maximum number of concurrent connections 
+            ServicePointManager.DefaultConnectionLimit = 12;
+
+            // For information on handling configuration changes
+            // see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.
+
+            return base.OnStart();
+        }
+    }
+}

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/WorkerRole.cs
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/app.config
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/app.config?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/app.config (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/app.config Fri Dec 23 03:47:55 2011
@@ -1,13 +1,13 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<configuration>
-    <system.diagnostics>
-        <trace>
-            <listeners>
-                <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
-                    name="AzureDiagnostics">
-                    <filter type="" />
-                </add>
-            </listeners>
-        </trace>
-    </system.diagnostics>
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+    <system.diagnostics>
+        <trace>
+            <listeners>
+                <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+                    name="AzureDiagnostics">
+                    <filter type="" />
+                </add>
+            </listeners>
+        </trace>
+    </system.diagnostics>
 </configuration>
\ No newline at end of file

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld_WorkerRole/app.config
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/pom.xml?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/pom.xml (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/pom.xml Fri Dec 23 03:47:55 2011
@@ -1,84 +1,84 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~   http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>NPanday.ITs</groupId>
-    <artifactId>NPanday.ITs.Parent</artifactId>
-    <version>1-SNAPSHOT</version>
-  </parent>
-  <groupId>NPanday.ITs.NPANDAY_480_AzureSupportOneWebRole</groupId>
-  <artifactId>NPANDAY_480_AzureSupportOneWebRole-parent</artifactId>
-  <packaging>pom</packaging>
-  <name>NPANDAY_480_AzureSupportOneWebRole : NPANDAY_480_AzureSupportOneWebRole-parent</name>
-
-  <properties>
-    <frameworkVersion>4.0</frameworkVersion>
-  </properties>
-
-  <profiles>
-    <profile>
-      <id>standalone</id>
-      <activation>
-        <property>
-          <name>!npanday.version</name>
-        </property>
-      </activation>
-      <properties>
-        <npanday.version>1.5.0-incubating-SNAPSHOT</npanday.version>
-      </properties>
-    </profile>
-  </profiles>
-
-  <build>
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>org.apache.npanday.plugins</groupId>
-          <artifactId>maven-compile-plugin</artifactId>
-          <version>${npanday.version}</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.npanday.plugins</groupId>
-          <artifactId>custom-lifecycle-maven-plugin</artifactId>
-          <version>${npanday.version}</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.npanday.plugins</groupId>
-          <artifactId>msdeploy-maven-plugin</artifactId>
-          <version>${npanday.version}</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.npanday.plugins</groupId>
-          <artifactId>azure-maven-plugin</artifactId>
-          <version>${npanday.version}</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-  </build>
-  
-  <modules>
-    <module>HelloWorld</module>
-    <module>HelloWorld_WebRole</module>
-  </modules>
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>NPanday.ITs</groupId>
+    <artifactId>NPanday.ITs.Parent</artifactId>
+    <version>1-SNAPSHOT</version>
+  </parent>
+  <groupId>NPanday.ITs.NPANDAY_480_AzureSupportOneWebRole</groupId>
+  <artifactId>NPANDAY_480_AzureSupportOneWebRole-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>NPANDAY_480_AzureSupportOneWebRole : NPANDAY_480_AzureSupportOneWebRole-parent</name>
+
+  <properties>
+    <frameworkVersion>4.0</frameworkVersion>
+  </properties>
+
+  <profiles>
+    <profile>
+      <id>standalone</id>
+      <activation>
+        <property>
+          <name>!npanday.version</name>
+        </property>
+      </activation>
+      <properties>
+        <npanday.version>1.5.0-incubating-SNAPSHOT</npanday.version>
+      </properties>
+    </profile>
+  </profiles>
+
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.npanday.plugins</groupId>
+          <artifactId>maven-compile-plugin</artifactId>
+          <version>${npanday.version}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.npanday.plugins</groupId>
+          <artifactId>custom-lifecycle-maven-plugin</artifactId>
+          <version>${npanday.version}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.npanday.plugins</groupId>
+          <artifactId>msdeploy-maven-plugin</artifactId>
+          <version>${npanday.version}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.npanday.plugins</groupId>
+          <artifactId>azure-maven-plugin</artifactId>
+          <version>${npanday.version}</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+  
+  <modules>
+    <module>HelloWorld</module>
+    <module>HelloWorld_WebRole</module>
+  </modules>
 </project>
\ No newline at end of file

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/ChainedXdtTransform.targets
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/ChainedXdtTransform.targets?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/ChainedXdtTransform.targets (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/ChainedXdtTransform.targets Fri Dec 23 03:47:55 2011
@@ -1,167 +1,167 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
-  
-  <UsingTask TaskName="TransformXml"  AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll"/>
-
-  <!-- SETUP [ -->
-  
-  <PropertyGroup>
-    <RawContentsDirectory Condition="'$(RawContentsDirectory)' == ''">$(WorkDirectory)\01-source-raw</RawContentsDirectory>
-    <TransformationsDirectory Condition="'$(TransformationsDirectory)' == ''">$(WorkDirectory)\01-source-transformations</TransformationsDirectory>
-    <IntermediateTransformationDirectory Condition="'$(IntermediateTransformationDirectory)' == ''">$(WorkDirectory)\02-xdt-intermediate</IntermediateTransformationDirectory>
-    <TargetDirectory Condition="'$(TargetDirectory)' == ''">$(WorkDirectory)\03-transformed</TargetDirectory>
-  </PropertyGroup>
-
-  <ItemGroup>
-    <TransformationFileIdentifiers Include="$(TransformationFileIdentifiers)"/>
-  </ItemGroup>
-
-  <ItemGroup>
-    <SourceFiles Include="$(RawContentsDirectory)\**\*.*"/>
-    <Transformations Include="$(TransformationsDirectory)\**\*.*"/>
-  </ItemGroup>
-
-  <!-- ] SETUP -->
-  
-  <PropertyGroup>
-    <TransformAndCopyDependsOn>
-      ValidateParameters;
-      SetupDefaults;
-      MatchTransformations;
-      PrepareTransformationInstructions;
-      TransformEach;
-      CopyAll;
-      IncrementalCleanup
-    </TransformAndCopyDependsOn>
-  </PropertyGroup>
-
-  <Target Name="TransformAndCopy" DependsOnTargets="$(TransformAndCopyDependsOn)">
-    <Message Text="Copy with transform from '$(RawContentsDirectory)' to '$(TargetDirectory)' has run successfully!" Importance="high"/>
-  </Target>
-
-  <Target Name="ValidateParameters">
-    
-    <Error Condition="!Exists($(WorkDirectory))"
-           Text="WorkDirectory: Could not find the directory $(WorkDirectory)" />
-
-    <Error Condition="!Exists($(RawContentsDirectory))"
-           Text="RawContentsDirectory: Could not find the directory $(RawContentsDirectory)" />
-
-    <Error Condition="!Exists($(TransformationsDirectory))"
-           Text="TransformationsDirectory: Could not find the directory $(TransformationsDirectory)" />
-
-  </Target>
-
-  <Target Name="SetupDefaults">
-    <ItemGroup>
-      <SourceFiles Condition="'%(SourceFiles.Identity)' != ''">
-        <TargetFile>$(TargetDirectory)\%(SourceFiles.RecursiveDir)%(Filename)%(Extension)</TargetFile>
-        <IntermediateTransformedFile>$(IntermediateTransformationDirectory)\%(SourceFiles.RecursiveDir)%(Filename)%(Extension)</IntermediateTransformedFile>
-      </SourceFiles>
-    </ItemGroup>
-  </Target>
-
-  <Target Name="MatchTransformations"
-          Inputs="%(SourceFiles.Identity)"
-          Outputs="DUMMY"
-          >
-    <PropertyGroup>
-      <SourceFile>%(SourceFiles.Identity)</SourceFile>
-      
-      <TransformationFileBefore>$(TransformationsDirectory)\%(SourceFiles.RecursiveDir)%(Filename).</TransformationFileBefore>
-      <TransformationFileAfter>%(SourceFiles.Extension)</TransformationFileAfter>
-    </PropertyGroup>
-
-    <ItemGroup>
-      <!-- clear the temp list -->
-      <_Transformations Remove="@(_Transformations)" />
-      
-      <!-- add an include per %(TransformationFileIdentifiers.Identity) -->
-      <_Transformations Include="$(TransformationFileBefore)%(TransformationFileIdentifiers.Identity)$(TransformationFileAfter)"/>
-      
-      <!-- remove those, where the file doesn't exist -->
-      <_Transformations Remove="%(_Transformations.Identity)" Condition="!Exists(%(FullPath))"/>
-
-      <!-- Add found transformations to metadata -->
-      <SourceFiles Condition="'%(SourceFiles.Identity)' == '$(SourceFile)'">
-        <TransformationFiles>@(_Transformations)</TransformationFiles>
-      </SourceFiles>
-    </ItemGroup>
-
-    <Message Text="Found %(SourceFiles.TransformationFiles) for %(SourceFiles.Identity)" 
-             Condition="%(SourceFiles.TransformationFiles) != ''"/>
-  </Target>
-
-  <Target Name="PrepareTransformationInstructions"
-          Inputs="%(SourceFiles.Identity)"
-          Outputs="DUMMY"
-          >
-    <PropertyGroup>
-      <SourceFile>%(SourceFiles.Identity)</SourceFile>
-      <IntermediateTransformedFile>%(SourceFiles.IntermediateTransformedFile)</IntermediateTransformedFile>
-    </PropertyGroup>
-
-    <ItemGroup>
-      <TransformationInstructions Include="%(SourceFiles.TransformationFiles)">
-        <TransformationTarget>$(IntermediateTransformedFile)</TransformationTarget>
-      </TransformationInstructions>
-    </ItemGroup>
-
-    <Copy SourceFiles="$(SourceFile)"
-         DestinationFiles="$(IntermediateTransformedFile)"
-         Condition="'%(SourceFiles.TransformationFiles)' != ''"/>
-  </Target>
-  
-  <!-- 
-  Will run per %(SourceFiles.Identity) as specified on parent [TransformEach]. 
-  -->
-  <Target Name="TransformEach"
-          Inputs="%(TransformationInstructions.Identity)"
-          Outputs="DUMMY">
-    <PropertyGroup>
-      <CurrentTransformationFile>%(TransformationInstructions.Identity)</CurrentTransformationFile>
-      <TransformationTarget>%(TransformationInstructions.TransformationTarget)</TransformationTarget>
-    
-      <TempFile1>$([System.IO.Path]::GetTempFileName())</TempFile1>
-      <TempFile2>$([System.IO.Path]::GetTempFileName())</TempFile2>
-    </PropertyGroup>
-
-    <Message Text="# applying $(CurrentTransformationFile)
-  to $(TransformationTarget)"/>
-
-    <!-- 
-    Using TMP-files, since XmlTransform locks the all files
-    -->
-    <Copy SourceFiles="$(TransformationTarget)"
-          DestinationFiles="$(TempFile1)"
-          />
-
-    <TransformXml Source="$(TempFile1)"
-                  Transform="$(CurrentTransformationFile)"
-                  Destination="$(TempFile2)" />
-
-    <Copy SourceFiles="$(TempFile2)"
-          DestinationFiles="$(TransformationTarget)"
-          />
-    
-  </Target>
-
-  <Target Name="CopyAll">
-    <Copy SourceFiles="@(SourceFiles -> '%(IntermediateTransformedFile)')"
-          DestinationFiles="@(SourceFiles -> '%(TargetFile)')"
-          Condition="Exists(%(IntermediateTransformedFile))"/>
-    
-    <Copy SourceFiles="@(SourceFiles)"
-          DestinationFiles="@(SourceFiles -> '%(TargetFile)')"
-          Condition="!Exists(%(IntermediateTransformedFile))"/>
-  </Target>
-
-  <Target Name="IncrementalCleanup">
-    <ItemGroup>
-      <OrphanedTargetFiles Include="$(TargetDirectory)\**\*.*" Exclude="@(SourceFiles -> '%(TargetFile)')"/>
-    </ItemGroup>
-    
-    <Delete Files="@(OrphanedTargetFiles)" />
-  </Target>
-
-</Project>
+<?xml version="1.0" encoding="utf-8"?>
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
+  
+  <UsingTask TaskName="TransformXml"  AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll"/>
+
+  <!-- SETUP [ -->
+  
+  <PropertyGroup>
+    <RawContentsDirectory Condition="'$(RawContentsDirectory)' == ''">$(WorkDirectory)\01-source-raw</RawContentsDirectory>
+    <TransformationsDirectory Condition="'$(TransformationsDirectory)' == ''">$(WorkDirectory)\01-source-transformations</TransformationsDirectory>
+    <IntermediateTransformationDirectory Condition="'$(IntermediateTransformationDirectory)' == ''">$(WorkDirectory)\02-xdt-intermediate</IntermediateTransformationDirectory>
+    <TargetDirectory Condition="'$(TargetDirectory)' == ''">$(WorkDirectory)\03-transformed</TargetDirectory>
+  </PropertyGroup>
+
+  <ItemGroup>
+    <TransformationFileIdentifiers Include="$(TransformationFileIdentifiers)"/>
+  </ItemGroup>
+
+  <ItemGroup>
+    <SourceFiles Include="$(RawContentsDirectory)\**\*.*"/>
+    <Transformations Include="$(TransformationsDirectory)\**\*.*"/>
+  </ItemGroup>
+
+  <!-- ] SETUP -->
+  
+  <PropertyGroup>
+    <TransformAndCopyDependsOn>
+      ValidateParameters;
+      SetupDefaults;
+      MatchTransformations;
+      PrepareTransformationInstructions;
+      TransformEach;
+      CopyAll;
+      IncrementalCleanup
+    </TransformAndCopyDependsOn>
+  </PropertyGroup>
+
+  <Target Name="TransformAndCopy" DependsOnTargets="$(TransformAndCopyDependsOn)">
+    <Message Text="Copy with transform from '$(RawContentsDirectory)' to '$(TargetDirectory)' has run successfully!" Importance="high"/>
+  </Target>
+
+  <Target Name="ValidateParameters">
+    
+    <Error Condition="!Exists($(WorkDirectory))"
+           Text="WorkDirectory: Could not find the directory $(WorkDirectory)" />
+
+    <Error Condition="!Exists($(RawContentsDirectory))"
+           Text="RawContentsDirectory: Could not find the directory $(RawContentsDirectory)" />
+
+    <Error Condition="!Exists($(TransformationsDirectory))"
+           Text="TransformationsDirectory: Could not find the directory $(TransformationsDirectory)" />
+
+  </Target>
+
+  <Target Name="SetupDefaults">
+    <ItemGroup>
+      <SourceFiles Condition="'%(SourceFiles.Identity)' != ''">
+        <TargetFile>$(TargetDirectory)\%(SourceFiles.RecursiveDir)%(Filename)%(Extension)</TargetFile>
+        <IntermediateTransformedFile>$(IntermediateTransformationDirectory)\%(SourceFiles.RecursiveDir)%(Filename)%(Extension)</IntermediateTransformedFile>
+      </SourceFiles>
+    </ItemGroup>
+  </Target>
+
+  <Target Name="MatchTransformations"
+          Inputs="%(SourceFiles.Identity)"
+          Outputs="DUMMY"
+          >
+    <PropertyGroup>
+      <SourceFile>%(SourceFiles.Identity)</SourceFile>
+      
+      <TransformationFileBefore>$(TransformationsDirectory)\%(SourceFiles.RecursiveDir)%(Filename).</TransformationFileBefore>
+      <TransformationFileAfter>%(SourceFiles.Extension)</TransformationFileAfter>
+    </PropertyGroup>
+
+    <ItemGroup>
+      <!-- clear the temp list -->
+      <_Transformations Remove="@(_Transformations)" />
+      
+      <!-- add an include per %(TransformationFileIdentifiers.Identity) -->
+      <_Transformations Include="$(TransformationFileBefore)%(TransformationFileIdentifiers.Identity)$(TransformationFileAfter)"/>
+      
+      <!-- remove those, where the file doesn't exist -->
+      <_Transformations Remove="%(_Transformations.Identity)" Condition="!Exists(%(FullPath))"/>
+
+      <!-- Add found transformations to metadata -->
+      <SourceFiles Condition="'%(SourceFiles.Identity)' == '$(SourceFile)'">
+        <TransformationFiles>@(_Transformations)</TransformationFiles>
+      </SourceFiles>
+    </ItemGroup>
+
+    <Message Text="Found %(SourceFiles.TransformationFiles) for %(SourceFiles.Identity)" 
+             Condition="%(SourceFiles.TransformationFiles) != ''"/>
+  </Target>
+
+  <Target Name="PrepareTransformationInstructions"
+          Inputs="%(SourceFiles.Identity)"
+          Outputs="DUMMY"
+          >
+    <PropertyGroup>
+      <SourceFile>%(SourceFiles.Identity)</SourceFile>
+      <IntermediateTransformedFile>%(SourceFiles.IntermediateTransformedFile)</IntermediateTransformedFile>
+    </PropertyGroup>
+
+    <ItemGroup>
+      <TransformationInstructions Include="%(SourceFiles.TransformationFiles)">
+        <TransformationTarget>$(IntermediateTransformedFile)</TransformationTarget>
+      </TransformationInstructions>
+    </ItemGroup>
+
+    <Copy SourceFiles="$(SourceFile)"
+         DestinationFiles="$(IntermediateTransformedFile)"
+         Condition="'%(SourceFiles.TransformationFiles)' != ''"/>
+  </Target>
+  
+  <!-- 
+  Will run per %(SourceFiles.Identity) as specified on parent [TransformEach]. 
+  -->
+  <Target Name="TransformEach"
+          Inputs="%(TransformationInstructions.Identity)"
+          Outputs="DUMMY">
+    <PropertyGroup>
+      <CurrentTransformationFile>%(TransformationInstructions.Identity)</CurrentTransformationFile>
+      <TransformationTarget>%(TransformationInstructions.TransformationTarget)</TransformationTarget>
+    
+      <TempFile1>$([System.IO.Path]::GetTempFileName())</TempFile1>
+      <TempFile2>$([System.IO.Path]::GetTempFileName())</TempFile2>
+    </PropertyGroup>
+
+    <Message Text="# applying $(CurrentTransformationFile)
+  to $(TransformationTarget)"/>
+
+    <!-- 
+    Using TMP-files, since XmlTransform locks the all files
+    -->
+    <Copy SourceFiles="$(TransformationTarget)"
+          DestinationFiles="$(TempFile1)"
+          />
+
+    <TransformXml Source="$(TempFile1)"
+                  Transform="$(CurrentTransformationFile)"
+                  Destination="$(TempFile2)" />
+
+    <Copy SourceFiles="$(TempFile2)"
+          DestinationFiles="$(TransformationTarget)"
+          />
+    
+  </Target>
+
+  <Target Name="CopyAll">
+    <Copy SourceFiles="@(SourceFiles -> '%(IntermediateTransformedFile)')"
+          DestinationFiles="@(SourceFiles -> '%(TargetFile)')"
+          Condition="Exists(%(IntermediateTransformedFile))"/>
+    
+    <Copy SourceFiles="@(SourceFiles)"
+          DestinationFiles="@(SourceFiles -> '%(TargetFile)')"
+          Condition="!Exists(%(IntermediateTransformedFile))"/>
+  </Target>
+
+  <Target Name="IncrementalCleanup">
+    <ItemGroup>
+      <OrphanedTargetFiles Include="$(TargetDirectory)\**\*.*" Exclude="@(SourceFiles -> '%(TargetFile)')"/>
+    </ItemGroup>
+    
+    <Delete Files="@(OrphanedTargetFiles)" />
+  </Target>
+
+</Project>

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/ChainedXdtTransform.targets
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx Fri Dec 23 03:47:55 2011
@@ -1,24 +1,24 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Microsoft.Samples.ServiceHosting.HelloWorld.Default" %>
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" >
-<head runat="server">
-    <title>Hello World!</title>
-</head>
-<body>
-    <form id="form1" runat="server">
-    <div style="font-size: 64pt; font-family: Arial, Helvetica, sans-serif; font-weight: bolder">
-        
-        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
-        
-    </div>
-    <div style="font-size: 14pt; font-family: Arial, Helvetica, Sans-Serif; font-weight: bolder">
-        <p><asp:Label ID="Label2" runat="server" Text="Label"></asp:Label></p>
-        <p><asp:HyperLink ID="HyperLink1" runat="server"></asp:HyperLink></p>
-        <p><asp:HyperLink ID="HyperLink2" runat="server"></asp:HyperLink></p>
-        <p><asp:HyperLink ID="HyperLink3" runat="server"></asp:HyperLink></p>
-    </div>
-    </form>
-</body>
-</html>
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Microsoft.Samples.ServiceHosting.HelloWorld.Default" %>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" >
+<head runat="server">
+    <title>Hello World!</title>
+</head>
+<body>
+    <form id="form1" runat="server">
+    <div style="font-size: 64pt; font-family: Arial, Helvetica, sans-serif; font-weight: bolder">
+        
+        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
+        
+    </div>
+    <div style="font-size: 14pt; font-family: Arial, Helvetica, Sans-Serif; font-weight: bolder">
+        <p><asp:Label ID="Label2" runat="server" Text="Label"></asp:Label></p>
+        <p><asp:HyperLink ID="HyperLink1" runat="server"></asp:HyperLink></p>
+        <p><asp:HyperLink ID="HyperLink2" runat="server"></asp:HyperLink></p>
+        <p><asp:HyperLink ID="HyperLink3" runat="server"></asp:HyperLink></p>
+    </div>
+    </form>
+</body>
+</html>

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.cs?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.cs (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.cs Fri Dec 23 03:47:55 2011
@@ -1,27 +1,27 @@
-//
-// <copyright file="Default.aspx.cs" company="Microsoft">
-//     Copyright (c) Microsoft Corporation.  All rights reserved.
-// </copyright>
-//
-using System;
-using System.Web.UI.WebControls;
-
-
-namespace Microsoft.Samples.ServiceHosting.HelloWorld
-{
-    public partial class Default : System.Web.UI.Page
-    {
-        protected void Page_Load(object sender, EventArgs e)
-        {
-            Label1.Text = "Hello World!";
-            Label2.Text = "To get started creating applications for Windows Azure, see:";
-            HyperLink1.Text = "Windows Azure Hands On Labs";
-            HyperLink1.NavigateUrl = "http://msdn.microsoft.com/en-us/windowsazure/wazplatformtrainingcourse_windowsazure_unit";
-            HyperLink2.Text = "Windows Azure Code Samples";
-            HyperLink2.NavigateUrl = "http://msdn.microsoft.com/en-us/library/windows-azure-code-samples.aspx";
-            HyperLink3.Text = "Windows Azure Code Quick Start";
-            HyperLink3.NavigateUrl = "http://msdn.microsoft.com/en-us/library/gg663908.aspx";
-
-        }
-    }
-}
+//
+// <copyright file="Default.aspx.cs" company="Microsoft">
+//     Copyright (c) Microsoft Corporation.  All rights reserved.
+// </copyright>
+//
+using System;
+using System.Web.UI.WebControls;
+
+
+namespace Microsoft.Samples.ServiceHosting.HelloWorld
+{
+    public partial class Default : System.Web.UI.Page
+    {
+        protected void Page_Load(object sender, EventArgs e)
+        {
+            Label1.Text = "Hello World!";
+            Label2.Text = "To get started creating applications for Windows Azure, see:";
+            HyperLink1.Text = "Windows Azure Hands On Labs";
+            HyperLink1.NavigateUrl = "http://msdn.microsoft.com/en-us/windowsazure/wazplatformtrainingcourse_windowsazure_unit";
+            HyperLink2.Text = "Windows Azure Code Samples";
+            HyperLink2.NavigateUrl = "http://msdn.microsoft.com/en-us/library/windows-azure-code-samples.aspx";
+            HyperLink3.Text = "Windows Azure Code Quick Start";
+            HyperLink3.NavigateUrl = "http://msdn.microsoft.com/en-us/library/gg663908.aspx";
+
+        }
+    }
+}

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.cs
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.designer.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.designer.cs?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.designer.cs (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.designer.cs Fri Dec 23 03:47:55 2011
@@ -1,69 +1,69 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-//     This code was generated by a tool.
-//
-//     Changes to this file may cause incorrect behavior and will be lost if
-//     the code is regenerated. 
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace Microsoft.Samples.ServiceHosting.HelloWorld {
-    
-    
-    public partial class Default {
-        
-        /// <summary>
-        /// form1 control.
-        /// </summary>
-        /// <remarks>
-        /// Auto-generated field.
-        /// To modify move field declaration from designer file to code-behind file.
-        /// </remarks>
-        protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-        
-        /// <summary>
-        /// Label1 control.
-        /// </summary>
-        /// <remarks>
-        /// Auto-generated field.
-        /// To modify move field declaration from designer file to code-behind file.
-        /// </remarks>
-        protected global::System.Web.UI.WebControls.Label Label1;
-        
-        /// <summary>
-        /// Label2 control.
-        /// </summary>
-        /// <remarks>
-        /// Auto-generated field.
-        /// To modify move field declaration from designer file to code-behind file.
-        /// </remarks>
-        protected global::System.Web.UI.WebControls.Label Label2;
-        
-        /// <summary>
-        /// HyperLink1 control.
-        /// </summary>
-        /// <remarks>
-        /// Auto-generated field.
-        /// To modify move field declaration from designer file to code-behind file.
-        /// </remarks>
-        protected global::System.Web.UI.WebControls.HyperLink HyperLink1;
-        
-        /// <summary>
-        /// HyperLink2 control.
-        /// </summary>
-        /// <remarks>
-        /// Auto-generated field.
-        /// To modify move field declaration from designer file to code-behind file.
-        /// </remarks>
-        protected global::System.Web.UI.WebControls.HyperLink HyperLink2;
-        
-        /// <summary>
-        /// HyperLink3 control.
-        /// </summary>
-        /// <remarks>
-        /// Auto-generated field.
-        /// To modify move field declaration from designer file to code-behind file.
-        /// </remarks>
-        protected global::System.Web.UI.WebControls.HyperLink HyperLink3;
-    }
-}
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     This code was generated by a tool.
+//
+//     Changes to this file may cause incorrect behavior and will be lost if
+//     the code is regenerated. 
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace Microsoft.Samples.ServiceHosting.HelloWorld {
+    
+    
+    public partial class Default {
+        
+        /// <summary>
+        /// form1 control.
+        /// </summary>
+        /// <remarks>
+        /// Auto-generated field.
+        /// To modify move field declaration from designer file to code-behind file.
+        /// </remarks>
+        protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+        
+        /// <summary>
+        /// Label1 control.
+        /// </summary>
+        /// <remarks>
+        /// Auto-generated field.
+        /// To modify move field declaration from designer file to code-behind file.
+        /// </remarks>
+        protected global::System.Web.UI.WebControls.Label Label1;
+        
+        /// <summary>
+        /// Label2 control.
+        /// </summary>
+        /// <remarks>
+        /// Auto-generated field.
+        /// To modify move field declaration from designer file to code-behind file.
+        /// </remarks>
+        protected global::System.Web.UI.WebControls.Label Label2;
+        
+        /// <summary>
+        /// HyperLink1 control.
+        /// </summary>
+        /// <remarks>
+        /// Auto-generated field.
+        /// To modify move field declaration from designer file to code-behind file.
+        /// </remarks>
+        protected global::System.Web.UI.WebControls.HyperLink HyperLink1;
+        
+        /// <summary>
+        /// HyperLink2 control.
+        /// </summary>
+        /// <remarks>
+        /// Auto-generated field.
+        /// To modify move field declaration from designer file to code-behind file.
+        /// </remarks>
+        protected global::System.Web.UI.WebControls.HyperLink HyperLink2;
+        
+        /// <summary>
+        /// HyperLink3 control.
+        /// </summary>
+        /// <remarks>
+        /// Auto-generated field.
+        /// To modify move field declaration from designer file to code-behind file.
+        /// </remarks>
+        protected global::System.Web.UI.WebControls.HyperLink HyperLink3;
+    }
+}

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/Default.aspx.designer.cs
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.Publish.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.Publish.xml?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.Publish.xml (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.Publish.xml Fri Dec 23 03:47:55 2011
@@ -1,2 +1,2 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
 <publishData />
\ No newline at end of file

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.Publish.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.csproj
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.csproj?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.csproj (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.csproj Fri Dec 23 03:47:55 2011
@@ -1,94 +1,94 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <PropertyGroup>
-    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
-    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProductVersion>
-    </ProductVersion>
-    <SchemaVersion>2.0</SchemaVersion>
-    <ProjectGuid>{6AA66693-51D1-4651-A4B7-10271AC67C36}</ProjectGuid>
-    <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
-    <OutputType>Library</OutputType>
-    <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>Microsoft.Samples.ServiceHosting.HelloWorld</RootNamespace>
-    <AssemblyName>HelloWorld_WebRole</AssemblyName>
-    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
-    <TargetFrameworkProfile />
-    <UseIISExpress>false</UseIISExpress>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
-    <DebugSymbols>true</DebugSymbols>
-    <DebugType>full</DebugType>
-    <Optimize>false</Optimize>
-    <OutputPath>bin\</OutputPath>
-    <DefineConstants>DEBUG;TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
-    <DebugType>pdbonly</DebugType>
-    <Optimize>true</Optimize>
-    <OutputPath>bin\</OutputPath>
-    <DefineConstants>TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
-  </PropertyGroup>
-  <ItemGroup>
-    <Reference Include="System" />
-    <Reference Include="System.Web" />
-  </ItemGroup>
-  <ItemGroup>
-    <Content Include="Default.aspx" />
-    <Content Include="pom.xml" />
-    <Content Include="Properties\Packaging\assembly.xml" />
-    <Content Include="Properties\Packaging\copy-transformed.xml" />
-    <Content Include="Properties\Packaging\msdeploy-manifest.xml" />
-    <Content Include="Web.config" />
-  </ItemGroup>
-  <ItemGroup>
-    <Compile Include="Default.aspx.cs">
-      <DependentUpon>Default.aspx</DependentUpon>
-      <SubType>ASPXCodeBehind</SubType>
-    </Compile>
-    <Compile Include="Default.aspx.designer.cs">
-      <DependentUpon>Default.aspx</DependentUpon>
-    </Compile>
-  </ItemGroup>
-  <ItemGroup>
-    <Content Include="Properties\Packaging\Web.package.config" />
-  </ItemGroup>
-  <ItemGroup />
-  <ItemGroup>
-    <None Include="Properties\Packaging\ChainedXdtTransform.targets" />
-  </ItemGroup>
-  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
-  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
-  <ProjectExtensions>
-    <VisualStudio>
-      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
-        <WebProjectProperties>
-          <UseIIS>False</UseIIS>
-          <AutoAssignPort>True</AutoAssignPort>
-          <DevelopmentServerPort>54407</DevelopmentServerPort>
-          <DevelopmentServerVPath>/</DevelopmentServerVPath>
-          <IISUrl>
-          </IISUrl>
-          <NTLMAuthentication>False</NTLMAuthentication>
-          <UseCustomServer>False</UseCustomServer>
-          <CustomServerUrl>
-          </CustomServerUrl>
-          <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
-        </WebProjectProperties>
-      </FlavorProperties>
-    </VisualStudio>
-  </ProjectExtensions>
-  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
-       Other similar extension points exist, see Microsoft.Common.targets.
-  <Target Name="BeforeBuild">
-  </Target>
-  <Target Name="AfterBuild">
-  </Target>
-  -->
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProductVersion>
+    </ProductVersion>
+    <SchemaVersion>2.0</SchemaVersion>
+    <ProjectGuid>{6AA66693-51D1-4651-A4B7-10271AC67C36}</ProjectGuid>
+    <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>Microsoft.Samples.ServiceHosting.HelloWorld</RootNamespace>
+    <AssemblyName>HelloWorld_WebRole</AssemblyName>
+    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+    <TargetFrameworkProfile />
+    <UseIISExpress>false</UseIISExpress>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="System" />
+    <Reference Include="System.Web" />
+  </ItemGroup>
+  <ItemGroup>
+    <Content Include="Default.aspx" />
+    <Content Include="pom.xml" />
+    <Content Include="Properties\Packaging\assembly.xml" />
+    <Content Include="Properties\Packaging\copy-transformed.xml" />
+    <Content Include="Properties\Packaging\msdeploy-manifest.xml" />
+    <Content Include="Web.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Default.aspx.cs">
+      <DependentUpon>Default.aspx</DependentUpon>
+      <SubType>ASPXCodeBehind</SubType>
+    </Compile>
+    <Compile Include="Default.aspx.designer.cs">
+      <DependentUpon>Default.aspx</DependentUpon>
+    </Compile>
+  </ItemGroup>
+  <ItemGroup>
+    <Content Include="Properties\Packaging\Web.package.config" />
+  </ItemGroup>
+  <ItemGroup />
+  <ItemGroup>
+    <None Include="Properties\Packaging\ChainedXdtTransform.targets" />
+  </ItemGroup>
+  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
+  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
+  <ProjectExtensions>
+    <VisualStudio>
+      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
+        <WebProjectProperties>
+          <UseIIS>False</UseIIS>
+          <AutoAssignPort>True</AutoAssignPort>
+          <DevelopmentServerPort>54407</DevelopmentServerPort>
+          <DevelopmentServerVPath>/</DevelopmentServerVPath>
+          <IISUrl>
+          </IISUrl>
+          <NTLMAuthentication>False</NTLMAuthentication>
+          <UseCustomServer>False</UseCustomServer>
+          <CustomServerUrl>
+          </CustomServerUrl>
+          <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
+        </WebProjectProperties>
+      </FlavorProperties>
+    </VisualStudio>
+  </ProjectExtensions>
+  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
+       Other similar extension points exist, see Microsoft.Common.targets.
+  <Target Name="BeforeBuild">
+  </Target>
+  <Target Name="AfterBuild">
+  </Target>
+  -->
 </Project>
\ No newline at end of file

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/HelloWorld_WebRole.csproj
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/copy-transformed.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/copy-transformed.xml?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/copy-transformed.xml (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/copy-transformed.xml Fri Dec 23 03:47:55 2011
@@ -1,32 +1,32 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~   http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-
-<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"
-         DefaultTargets="TransformAndCopy">
-
-  <PropertyGroup>
-    <!-- set these from the outside!-->
-    <WorkDirectory Condition="'$(WorkDirectory)' == ''">target\packaging-workdir</WorkDirectory>
-    <TransformationFileIdentifiers Condition="'$(TransformationFileIdentifiers)' == ''">package</TransformationFileIdentifiers>
-  </PropertyGroup>
-
-  <Import Project="ChainedXdtTransform.targets"/>
-
-</Project>
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"
+         DefaultTargets="TransformAndCopy">
+
+  <PropertyGroup>
+    <!-- set these from the outside!-->
+    <WorkDirectory Condition="'$(WorkDirectory)' == ''">target\packaging-workdir</WorkDirectory>
+    <TransformationFileIdentifiers Condition="'$(TransformationFileIdentifiers)' == ''">package</TransformationFileIdentifiers>
+  </PropertyGroup>
+
+  <Import Project="ChainedXdtTransform.targets"/>
+
+</Project>

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/copy-transformed.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/msdeploy-manifest.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/msdeploy-manifest.xml?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/msdeploy-manifest.xml (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/msdeploy-manifest.xml Fri Dec 23 03:47:55 2011
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Manifest>
-  <dirPath path="target/prepare-package/03-transformed"/>
+<?xml version="1.0" encoding="utf-8"?>
+<Manifest>
+  <dirPath path="target/prepare-package/03-transformed"/>
 </Manifest>
\ No newline at end of file

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/msdeploy-manifest.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml Fri Dec 23 03:47:55 2011
@@ -1,116 +1,116 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~   http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
-                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>NPanday.ITs</groupId>
-    <artifactId>NPanday.ITs.Parent</artifactId>
-    <version>1-SNAPSHOT</version>
-  </parent>
- 
-  <groupId>NPanday.ITs.NPANDAY_488_MSDeployPackageSimpleWebApp</groupId>
-  <artifactId>HelloWorld_WebRole</artifactId>
-  <packaging>dotnet-library</packaging>
-  <version>1.0.0-SNAPSHOT</version>
-
-  <name>NPanday.ITs.NPANDAY_488_MSDeployPackageSimpleWebApp :: Hello World Web Role</name>
-
-  <properties>
-    <frameworkVersion>4.0</frameworkVersion>
-  </properties>
-
-  <profiles>
-    <profile>
-      <id>standalone</id>
-      <activation>
-        <property>
-          <name>!npanday.version</name>
-        </property>
-      </activation>
-      <properties>
-        <npanday.version>1.5.0-incubating-SNAPSHOT</npanday.version>
-      </properties>
-      <build>
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <groupId>org.apache.npanday.plugins</groupId>
-              <artifactId>maven-compile-plugin</artifactId>
-              <version>${npanday.version}</version>
-              <configuration>
-                <frameworkVersion>4.0</frameworkVersion>
-              </configuration>
-            </plugin>
-            <plugin>
-              <groupId>org.apache.npanday.plugins</groupId>
-              <artifactId>custom-lifecycle-maven-plugin</artifactId>
-              <version>${npanday.version}</version>
-            </plugin>
-          </plugins>
-        </pluginManagement>
-      </build>
-    </profile>
-  </profiles>
-
-  <build>
-    <sourceDirectory>.</sourceDirectory>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.npanday.plugins</groupId>
-        <artifactId>maven-compile-plugin</artifactId>
-        <extensions>true</extensions>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.npanday.plugins</groupId>
-        <artifactId>aspnet-maven-plugin</artifactId>
-        <version>${npanday.version}</version>
-        <executions>
-          <execution>
-            <id>prepare-package</id>
-            <phase>prepare-package</phase>
-            <goals>
-              <goal>assemble-package-files</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.npanday.plugins</groupId>
-        <artifactId>msdeploy-maven-plugin</artifactId>
-        <version>${npanday.version}</version>
-        <executions>
-          <execution>
-            <id>create-msdeploy-package</id>
-            <phase>package</phase>
-            <goals>
-              <goal>create-package</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>NPanday.ITs</groupId>
+    <artifactId>NPanday.ITs.Parent</artifactId>
+    <version>1-SNAPSHOT</version>
+  </parent>
+ 
+  <groupId>NPanday.ITs.NPANDAY_488_MSDeployPackageSimpleWebApp</groupId>
+  <artifactId>HelloWorld_WebRole</artifactId>
+  <packaging>dotnet-library</packaging>
+  <version>1.0.0-SNAPSHOT</version>
+
+  <name>NPanday.ITs.NPANDAY_488_MSDeployPackageSimpleWebApp :: Hello World Web Role</name>
+
+  <properties>
+    <frameworkVersion>4.0</frameworkVersion>
+  </properties>
+
+  <profiles>
+    <profile>
+      <id>standalone</id>
+      <activation>
+        <property>
+          <name>!npanday.version</name>
+        </property>
+      </activation>
+      <properties>
+        <npanday.version>1.5.0-incubating-SNAPSHOT</npanday.version>
+      </properties>
+      <build>
+        <pluginManagement>
+          <plugins>
+            <plugin>
+              <groupId>org.apache.npanday.plugins</groupId>
+              <artifactId>maven-compile-plugin</artifactId>
+              <version>${npanday.version}</version>
+              <configuration>
+                <frameworkVersion>4.0</frameworkVersion>
+              </configuration>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.npanday.plugins</groupId>
+              <artifactId>custom-lifecycle-maven-plugin</artifactId>
+              <version>${npanday.version}</version>
+            </plugin>
+          </plugins>
+        </pluginManagement>
+      </build>
+    </profile>
+  </profiles>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.npanday.plugins</groupId>
+        <artifactId>maven-compile-plugin</artifactId>
+        <extensions>true</extensions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.npanday.plugins</groupId>
+        <artifactId>aspnet-maven-plugin</artifactId>
+        <version>${npanday.version}</version>
+        <executions>
+          <execution>
+            <id>prepare-package</id>
+            <phase>prepare-package</phase>
+            <goals>
+              <goal>assemble-package-files</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.npanday.plugins</groupId>
+        <artifactId>msdeploy-maven-plugin</artifactId>
+        <version>${npanday.version}</version>
+        <executions>
+          <execution>
+            <id>create-msdeploy-package</id>
+            <phase>package</phase>
+            <goals>
+              <goal>create-package</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>  
\ No newline at end of file

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.config
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.config?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.config (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.config Fri Dec 23 03:47:55 2011
@@ -1,21 +1,21 @@
-<?xml version="1.0" encoding="utf-8"?>
-<configuration>
-	<system.web>
-		<compilation targetFramework="4.0" debug="true" />
-        <machineKey decryption="AES" decryptionKey="0CA3EFAF0F7A5E7A62681C0BF656EE0ECE31ACEE3E1023BA3FAD20EA5F199DE8" validation="SHA1" validationKey="7DFA065B3426D931C51124D9259DBD2DA1ADC5AB9DE62168764FF0DCE537184F0535D5D9AD66DEDC97DC1ABFF7FA540B4DFD82E5BB196B95D15FF81F75AD5328" />
-   </system.web>
-  <system.diagnostics>
-    <trace>
-      <listeners>
-        <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, 
-            Microsoft.WindowsAzure.Diagnostics, 
-            Version=1.0.0.0, 
-            Culture=neutral, 
-            PublicKeyToken=31bf3856ad364e35"
-           name="AzureDiagnostics">
-          <filter type="" />
-        </add>
-      </listeners>
-    </trace>
-  </system.diagnostics>
-</configuration>
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+	<system.web>
+		<compilation targetFramework="4.0" debug="true" />
+        <machineKey decryption="AES" decryptionKey="0CA3EFAF0F7A5E7A62681C0BF656EE0ECE31ACEE3E1023BA3FAD20EA5F199DE8" validation="SHA1" validationKey="7DFA065B3426D931C51124D9259DBD2DA1ADC5AB9DE62168764FF0DCE537184F0535D5D9AD66DEDC97DC1ABFF7FA540B4DFD82E5BB196B95D15FF81F75AD5328" />
+   </system.web>
+  <system.diagnostics>
+    <trace>
+      <listeners>
+        <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, 
+            Microsoft.WindowsAzure.Diagnostics, 
+            Version=1.0.0.0, 
+            Culture=neutral, 
+            PublicKeyToken=31bf3856ad364e35"
+           name="AzureDiagnostics">
+          <filter type="" />
+        </add>
+      </listeners>
+    </trace>
+  </system.diagnostics>
+</configuration>

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.config
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.package.config
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.package.config?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.package.config (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.package.config Fri Dec 23 03:47:55 2011
@@ -1,19 +1,19 @@
-<?xml version="1.0"?>
-<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
-  <connectionStrings xdt:Transform="Replace">
-    <!--
-      Please reconfigure your connection strings in web.package.config!
-      
-      <add name="MyDB" 
-        connectionString="PLEASE SPECIFY" 
-        xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
-        -->
-  </connectionStrings>
-  <system.web>
-    <customErrors xdt:Transform="Replace"
-      defaultRedirect="GenericError.htm"
-      mode="RemoteOnly">
-      <error statusCode="500" redirect="InternalError.htm"/>
-    </customErrors>
-  </system.web>
+<?xml version="1.0"?>
+<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
+  <connectionStrings xdt:Transform="Replace">
+    <!--
+      Please reconfigure your connection strings in web.package.config!
+      
+      <add name="MyDB" 
+        connectionString="PLEASE SPECIFY" 
+        xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
+        -->
+  </connectionStrings>
+  <system.web>
+    <customErrors xdt:Transform="Replace"
+      defaultRedirect="GenericError.htm"
+      mode="RemoteOnly">
+      <error statusCode="500" redirect="InternalError.htm"/>
+    </customErrors>
+  </system.web>
 </configuration>
\ No newline at end of file

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/web.package.config
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx Fri Dec 23 03:47:55 2011
@@ -1,40 +1,40 @@
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~   http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestGlobal._Default" %>
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" >
-<head runat="server">
-    <title></title>
-</head>
-<body>
-    <p>
-        Hello World</p>
-    <form id="form1" runat="server">
-    <div>
-    
-        <asp:Label ID="Label1" runat="server" Text="Hit Count:"></asp:Label>
-        <asp:TextBox ID="TextBox1" runat="server" Height="21px"></asp:TextBox>
-    
-    </div>
-    </form>
-</body>
-</html>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestGlobal._Default" %>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" >
+<head runat="server">
+    <title></title>
+</head>
+<body>
+    <p>
+        Hello World</p>
+    <form id="form1" runat="server">
+    <div>
+    
+        <asp:Label ID="Label1" runat="server" Text="Hit Count:"></asp:Label>
+        <asp:TextBox ID="TextBox1" runat="server" Height="21px"></asp:TextBox>
+    
+    </div>
+    </form>
+</body>
+</html>

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.cs?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.cs (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.cs Fri Dec 23 03:47:55 2011
@@ -1,40 +1,40 @@
-#region Apache License, Version 2.0
-//
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-//
-#endregion
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-
-namespace TestGlobal
-{
-    public partial class _Default : System.Web.UI.Page
-    {
-        protected void Page_Load(object sender, EventArgs e)
-        {
-            TextBox1.Text = Application["Hits"] as string;
-
-            Response.Write("<br/>ApplicationInstance: " +
-            Context.ApplicationInstance.GetType().FullName);
-        }
-    }
-}
+#region Apache License, Version 2.0
+//
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+//
+#endregion
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+namespace TestGlobal
+{
+    public partial class _Default : System.Web.UI.Page
+    {
+        protected void Page_Load(object sender, EventArgs e)
+        {
+            TextBox1.Text = Application["Hits"] as string;
+
+            Response.Write("<br/>ApplicationInstance: " +
+            Context.ApplicationInstance.GetType().FullName);
+        }
+    }
+}

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.cs
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.designer.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.designer.cs?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.designer.cs (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.designer.cs Fri Dec 23 03:47:55 2011
@@ -1,63 +1,63 @@
-#region Apache License, Version 2.0
-//
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-//
-#endregion
-//------------------------------------------------------------------------------
-// <auto-generated>
-//     This code was generated by a tool.
-//     Runtime Version:2.0.50727.3053
-//
-//     Changes to this file may cause incorrect behavior and will be lost if
-//     the code is regenerated.
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace TestGlobal {
-    
-    
-    public partial class _Default {
-        
-        /// <summary>
-        /// form1 control.
-        /// </summary>
-        /// <remarks>
-        /// Auto-generated field.
-        /// To modify move field declaration from designer file to code-behind file.
-        /// </remarks>
-        protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-        
-        /// <summary>
-        /// Label1 control.
-        /// </summary>
-        /// <remarks>
-        /// Auto-generated field.
-        /// To modify move field declaration from designer file to code-behind file.
-        /// </remarks>
-        protected global::System.Web.UI.WebControls.Label Label1;
-        
-        /// <summary>
-        /// TextBox1 control.
-        /// </summary>
-        /// <remarks>
-        /// Auto-generated field.
-        /// To modify move field declaration from designer file to code-behind file.
-        /// </remarks>
-        protected global::System.Web.UI.WebControls.TextBox TextBox1;
-    }
-}
+#region Apache License, Version 2.0
+//
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+//
+#endregion
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     This code was generated by a tool.
+//     Runtime Version:2.0.50727.3053
+//
+//     Changes to this file may cause incorrect behavior and will be lost if
+//     the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace TestGlobal {
+    
+    
+    public partial class _Default {
+        
+        /// <summary>
+        /// form1 control.
+        /// </summary>
+        /// <remarks>
+        /// Auto-generated field.
+        /// To modify move field declaration from designer file to code-behind file.
+        /// </remarks>
+        protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+        
+        /// <summary>
+        /// Label1 control.
+        /// </summary>
+        /// <remarks>
+        /// Auto-generated field.
+        /// To modify move field declaration from designer file to code-behind file.
+        /// </remarks>
+        protected global::System.Web.UI.WebControls.Label Label1;
+        
+        /// <summary>
+        /// TextBox1 control.
+        /// </summary>
+        /// <remarks>
+        /// Auto-generated field.
+        /// To modify move field declaration from designer file to code-behind file.
+        /// </remarks>
+        protected global::System.Web.UI.WebControls.TextBox TextBox1;
+    }
+}

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Default.aspx.designer.cs
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Global.asax
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Global.asax?rev=1222543&r1=1222542&r2=1222543&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Global.asax (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Global.asax Fri Dec 23 03:47:55 2011
@@ -1,20 +1,20 @@
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~   http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-
-<%@ Application Codebehind="Global.asax.cs" Inherits="TestGlobal.Global" Language="C#" %>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<%@ Application Codebehind="Global.asax.cs" Inherits="TestGlobal.Global" Language="C#" %>

Propchange: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_96_GlobalAsaxPrecompiledTest/Global.asax
------------------------------------------------------------------------------
    svn:eol-style = native