Re: [ken.egozi commit: 592]: /viewengines/aspview/trunk/

View: New views
2 Messages — Rating Filter:   Alert me  

Parent Message unknown Re: [ken.egozi commit: 592]: /viewengines/aspview/trunk/

by Roelof Blom :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Finally there it is, nice one Ken.

I noticed there are still several old AspView branches in contrib, guess they can be removed now to prevent confusion.

-- Roelof.

On Wed, Jul 16, 2008 at 1:49 PM, <notification@...> wrote:

User: ken.egozi
Date: 2008/07/16 04:49 AM

Added:
 /viewengines/aspview/trunk/
 readme.txt

Removed:
 /viewengines/aspview/trunk/
 2008.build, AspView-vs2008.sln, AspView.sln, Build-2008-Debug.bat, Build-2008-Release.bat, Build-Debug.bat, Build-Release.bat, Common.Build.xml, Default.build, GenerateAssemblyInfo.bat, GenerateAssemblyInfo.build, HowToBuild.txt
 /viewengines/aspview/trunk/AspViewTestSite/
 /viewengines/aspview/trunk/Castle.MonoRail.Views.AspView.Tests/
 /viewengines/aspview/trunk/Castle.MonoRail.Views.AspView/
 /viewengines/aspview/trunk/Solution Items/
 /viewengines/aspview/trunk/TestModel/
 /viewengines/aspview/trunk/ViewUpgrader.Tests/
 /viewengines/aspview/trunk/ViewUpgrader/
 /viewengines/aspview/trunk/vcompile/

Log:
 AspView has been moved to MonoRail's core

File Changes:

Directory: /viewengines/aspview/trunk/
======================================

File [removed]: 2008.build
Delta lines: +0 -91
===================================================================
--- viewengines/aspview/trunk/2008.build        2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/2008.build        2008-07-16 11:49:06 UTC (rev 592)
@@ -1,91 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
-       <PropertyGroup>
-    <SolutionDir>$(MSBuildProjectDirectory)</SolutionDir>
-    <Configuration Condition="!Exists('$(Configuration)')">Debug</Configuration>
-    <AspViewBinDir>$(SolutionDir)\Castle.MonoRail.Views.AspView\Bin\$(Configuration)</AspViewBinDir>
-    <VCompileBinDir>$(SolutionDir)\VCompile\Bin\$(Configuration)</VCompileBinDir>
-    <BuildDir>$(SolutionDir)\Build2008</BuildDir>
-    <BuildDllDir>$(BuildDir)\$(Configuration)</BuildDllDir>
-       </PropertyGroup>
-
-       <Import Project="Common.Build.xml" />
-
-  <Target Name="CreateBuildDir">
-               <MakeDir Directories="$(BuildDir)"></MakeDir>
-  </Target>
-
-  <Target Name="BuildAndTest" DependsOnTargets="Build;Test;CopyOutputToBuildDir;Zip">
-               <Message Text="BuildAndTest ..." />
-  </Target>
-
-  <Target Name="ReBuildAndTest" DependsOnTargets="Clean;BuildAndTest;">
-               <Message Text="BuildAndTest ..." />
-  </Target>
-
-  <Target Name="GenerateAssemblyInfo">
-               <Message Text="Generating AssemblyInfo ..." />
-               <MSBuild        Projects="GenerateAssemblyInfo.build" />
-  </Target>
-
-       <Target Name="Clean">
-               <Message Text="Cleaning build folders ..." />
-               <MSBuild        Projects="AspView-vs2008.sln"
-                                                       Properties="Configuration=$(Configuration)"
-                                                       Targets="Clean" />
-       </Target>
-
-       <Target Name="Build" DependsOnTargets="GenerateAssemblyInfo;">
-               <Message Text="Building solution ..." />
-               <MSBuild        Projects="AspView-vs2008.sln"
-                                                       Properties="Configuration=$(Configuration)" />
-       </Target>
-
-
-  <Target Name="Rebuild" DependsOnTargets="Clean;Build;">
-               <Message Text="Rebuild ..." />
-  </Target>
-
-       <Target Name="CopyOutputToBuildDir" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Deleting old Dll files from build directory ..." />
-               <RemoveDir Directories="$(BuildDllDir)"></RemoveDir>
-               <MakeDir Directories="$(BuildDllDir)"></MakeDir>
-
-               <Message Text="Copying Dll files to build directory ..." />
-               <CreateItem Include="$(AspViewBinDir)\Castle.MonoRail.Views.AspView.dll;$(AspViewBinDir)\Castle.MonoRail.Views.AspView.pdb;$(VCompileBinDir)\VCompile.exe;$(VCompileBinDir)\VCompile.pdb;">
-                       <Output ItemName="DllFiles" TaskParameter="Include"/>
-               </CreateItem>
-               <Copy   SourceFiles="@(DllFiles)"
-                                       DestinationFolder="$(BuildDllDir)" />
-       </Target>
-
-       <Target Name="Zip" DependsOnTargets="GetRevision;">
-               <CreateProperty value="$(BuildDir)\AspView-$(Major).$(Minor).$(Build).$(Revision)-$(Configuration).zip">
-                       <Output TaskParameter="Value"
-                                                       PropertyName="ZipFileName" />
-               </CreateProperty>
-               <CreateItem Include="$(BuildDllDir)\*.*">
-                       <Output ItemName="ZipFiles" TaskParameter="Include"/>
-               </CreateItem>
-               <Zip    Files="@(ZipFiles)" ZipLevel="9"
-                                       WorkingDirectory="$(MSBuildProjectDirectory)"
-                                       ZipFileName="$(ZipFileName)" />
-       </Target>
-
-        <Target Name="Test" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Running tests ..." />
-    <Exec WorkingDirectory="$(SolutionDir)\Castle.Tools.SQLQueryGenerator.Tests\bin\$(Configuration)"
-                                       Command="&quot;$(SolutionDir)\SolutionItems\Lib\xunit.console.exe&quot; Castle.Tools.SQLQueryGenerator.Tests.dll /xml &quot;$(BuildDir)\test-results.xml&quot;"
-    />
-
-  </Target>
-
-  <Target Name="Test" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Running tests ..." />
-               <Exec WorkingDirectory="$(SolutionDir)\Castle.MonoRail.Views.AspView.Tests\bin\$(Configuration)"
-                                       Command="&quot;$(SolutionDir)\Solution Items\Tools\xunit\xunit.console.exe&quot; Castle.MonoRail.Views.AspView.Tests.dll /xml &quot;$(BuildDir)\test-results.xml&quot;"
-    />
-       </Target>
-
-</Project>
\ No newline at end of file

File [removed]: AspView-vs2008.sln
Delta lines: +0 -96
===================================================================
--- viewengines/aspview/trunk/AspView-vs2008.sln        2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/AspView-vs2008.sln        2008-07-16 11:49:06 UTC (rev 592)
@@ -1,96 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual Studio 2008
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{648DC04C-1AAE-4113-A8E9-097F444AA0D8}"
-       ProjectSection(SolutionItems) = preProject
-               Solution Items\KenEgoziOpenSource.snk = Solution Items\KenEgoziOpenSource.snk
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Lib", "Lib", "{AD4AC238-0320-4805-88B4-C9A77D4C09F6}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Castle", "Castle", "{7C0F01C7-F300-403E-8C6C-6347F1A544D8}"
-       ProjectSection(SolutionItems) = preProject
-               Solution Items\Lib\Castle\Castle.Core.dll = Solution Items\Lib\Castle\Castle.Core.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.ActiveRecordSupport.dll = Solution Items\Lib\Castle\Castle.MonoRail.ActiveRecordSupport.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.Framework.dll = Solution Items\Lib\Castle\Castle.MonoRail.Framework.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.TestSupport.dll = Solution Items\Lib\Castle\Castle.MonoRail.TestSupport.dll
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{BA891B1F-4F6A-42FC-B004-C58B334EC6CB}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{13997A22-812F-4D17-B2EB-D31DD9C15C0C}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Test Sites", "Test Sites", "{C5778A42-85BC-458A-8945-443CE498F5AB}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Castle.MonoRail.Views.AspView-vs2008", "Castle.MonoRail.Views.AspView\Castle.MonoRail.Views.AspView-vs2008.csproj", "{41B2C873-254B-4BC5-8514-AD33ED3B5934}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VCompile-vs2008", "vcompile\VCompile-vs2008.csproj", "{36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Castle.MonoRail.Views.AspView.Tests-vs2008", "Castle.MonoRail.Views.AspView.Tests\Castle.MonoRail.Views.AspView.Tests-vs2008.csproj", "{5797C3B2-2994-42F4-9FCE-12B288A8A1E8}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewUpgrader-vs2008", "ViewUpgrader\ViewUpgrader-vs2008.csproj", "{7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewUpgrader.Tests-vs2008", "ViewUpgrader.Tests\ViewUpgrader.Tests-vs2008.csproj", "{8ADF376A-9298-4CBA-B3CD-7F24FE00A006}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspViewTestSite-vs2008", "AspViewTestSite\AspViewTestSite-vs2008.csproj", "{65929B65-C749-43C8-9EA8-5EFFFAE16A5C}"
-       ProjectSection(ProjectDependencies) = postProject
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14} = {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}
-       EndProjectSection
-EndProject
-Global
-       GlobalSection(SolutionConfigurationPlatforms) = preSolution
-               Debug|Any CPU = Debug|Any CPU
-               Release|Any CPU = Release|Any CPU
-               Run vcompile in Debug|Any CPU = Run vcompile in Debug|Any CPU
-       EndGlobalSection
-       GlobalSection(ProjectConfigurationPlatforms) = postSolution
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Release|Any CPU.Build.0 = Release|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Release|Any CPU.Build.0 = Release|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Release|Any CPU.Build.0 = Release|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Release|Any CPU.Build.0 = Release|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Run vcompile in Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Run vcompile in Debug|Any CPU.Build.0 = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Release|Any CPU.Build.0 = Release|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Run vcompile in Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Run vcompile in Debug|Any CPU.Build.0 = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Release|Any CPU.Build.0 = Release|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-       EndGlobalSection
-       GlobalSection(SolutionProperties) = preSolution
-               HideSolutionNode = FALSE
-       EndGlobalSection
-       GlobalSection(NestedProjects) = preSolution
-               {AD4AC238-0320-4805-88B4-C9A77D4C09F6} = {648DC04C-1AAE-4113-A8E9-097F444AA0D8}
-               {7C0F01C7-F300-403E-8C6C-6347F1A544D8} = {AD4AC238-0320-4805-88B4-C9A77D4C09F6}
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B} = {BA891B1F-4F6A-42FC-B004-C58B334EC6CB}
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006} = {BA891B1F-4F6A-42FC-B004-C58B334EC6CB}
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C} = {C5778A42-85BC-458A-8945-443CE498F5AB}
-       EndGlobalSection
-EndGlobal

File [removed]: AspView.sln
Delta lines: +0 -144
===================================================================
--- viewengines/aspview/trunk/AspView.sln       2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/AspView.sln       2008-07-16 11:49:06 UTC (rev 592)
@@ -1,144 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual Studio 2005
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Castle.MonoRail.Views.AspView", "Castle.MonoRail.Views.AspView\Castle.MonoRail.Views.AspView.csproj", "{41B2C873-254B-4BC5-8514-AD33ED3B5934}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VCompile", "vcompile\VCompile.csproj", "{36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Castle.MonoRail.Views.AspView.Tests", "Castle.MonoRail.Views.AspView.Tests\Castle.MonoRail.Views.AspView.Tests.csproj", "{5797C3B2-2994-42F4-9FCE-12B288A8A1E8}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{648DC04C-1AAE-4113-A8E9-097F444AA0D8}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-       ProjectSection(SolutionItems) = preProject
-               Solution Items\KenEgoziOpenSource.snk = Solution Items\KenEgoziOpenSource.snk
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Lib", "Lib", "{AD4AC238-0320-4805-88B4-C9A77D4C09F6}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Castle", "Castle", "{7C0F01C7-F300-403E-8C6C-6347F1A544D8}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-       ProjectSection(SolutionItems) = preProject
-               Solution Items\Lib\Castle\Castle.Core.dll = Solution Items\Lib\Castle\Castle.Core.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.ActiveRecordSupport.dll = Solution Items\Lib\Castle\Castle.MonoRail.ActiveRecordSupport.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.Framework.dll = Solution Items\Lib\Castle\Castle.MonoRail.Framework.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.TestSupport.dll = Solution Items\Lib\Castle\Castle.MonoRail.TestSupport.dll
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewUpgrader", "ViewUpgrader\ViewUpgrader.csproj", "{7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewUpgrader.Tests", "ViewUpgrader.Tests\ViewUpgrader.Tests.csproj", "{8ADF376A-9298-4CBA-B3CD-7F24FE00A006}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{BA891B1F-4F6A-42FC-B004-C58B334EC6CB}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{13997A22-812F-4D17-B2EB-D31DD9C15C0C}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Test Sites", "Test Sites", "{C5778A42-85BC-458A-8945-443CE498F5AB}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspViewTestSite", "AspViewTestSite\AspViewTestSite.csproj", "{65929B65-C749-43C8-9EA8-5EFFFAE16A5C}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-       ProjectSection(ProjectDependencies) = postProject
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14} = {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}
-       EndProjectSection
-EndProject
-Global
-       GlobalSection(SolutionConfigurationPlatforms) = preSolution
-               Debug|Any CPU = Debug|Any CPU
-               Release|Any CPU = Release|Any CPU
-               Run vcompile in Debug|Any CPU = Run vcompile in Debug|Any CPU
-       EndGlobalSection
-       GlobalSection(ProjectConfigurationPlatforms) = postSolution
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Release|Any CPU.Build.0 = Release|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Release|Any CPU.Build.0 = Release|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Release|Any CPU.Build.0 = Release|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Release|Any CPU.Build.0 = Release|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Run vcompile in Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Run vcompile in Debug|Any CPU.Build.0 = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Release|Any CPU.Build.0 = Release|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Run vcompile in Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Run vcompile in Debug|Any CPU.Build.0 = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Release|Any CPU.Build.0 = Release|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-       EndGlobalSection
-       GlobalSection(SolutionProperties) = preSolution
-               HideSolutionNode = FALSE
-       EndGlobalSection
-       GlobalSection(NestedProjects) = preSolution
-               {AD4AC238-0320-4805-88B4-C9A77D4C09F6} = {648DC04C-1AAE-4113-A8E9-097F444AA0D8}
-               {7C0F01C7-F300-403E-8C6C-6347F1A544D8} = {AD4AC238-0320-4805-88B4-C9A77D4C09F6}
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B} = {BA891B1F-4F6A-42FC-B004-C58B334EC6CB}
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006} = {BA891B1F-4F6A-42FC-B004-C58B334EC6CB}
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C} = {C5778A42-85BC-458A-8945-443CE498F5AB}
-       EndGlobalSection
-EndGlobal

File [removed]: Build-2008-Debug.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/Build-2008-Debug.bat      2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Build-2008-Debug.bat      2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-c:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe 2008.Build
-pause
\ No newline at end of file

File [removed]: Build-2008-Release.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/Build-2008-Release.bat    2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Build-2008-Release.bat    2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-c:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe 2008.Build /property:Configuration=Release
-pause
\ No newline at end of file

File [removed]: Build-Debug.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/Build-Debug.bat   2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Build-Debug.bat   2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-msbuild Default.Build
-pause
\ No newline at end of file

File [removed]: Build-Release.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/Build-Release.bat 2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Build-Release.bat 2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-msbuild Default.Build /property:Configuration=Release
-pause
\ No newline at end of file

File [removed]: Common.Build.xml
Delta lines: +0 -36
===================================================================
--- viewengines/aspview/trunk/Common.Build.xml  2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Common.Build.xml  2008-07-16 11:49:06 UTC (rev 592)
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Version" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
-       <PropertyGroup>
-    <SolutionDir Condition="$(SolutionDir) == ''">$(MSBuildProjectDirectory)\..</SolutionDir>
-    <SolutionItemsDir>$(SolutionDir)\Solution Items</SolutionItemsDir>
-    <LibDir>$(SolutionItemsDir)\Lib</LibDir>
-    <CastleLibDir>$(LibDir)\Castle</CastleLibDir>
-    <MSBUildLibDir>$(LibDir)\MSBuild</MSBUildLibDir>
-    <ToolsDir>$(SolutionItemsDir)\Tools</ToolsDir>
-       </PropertyGroup>
-
-       <Import Project="$(MSBUildLibDir)\MSBuild.Community.Tasks.Targets"/>
-
-       <Target Name="GetRevision">
-               <SvnVersion LocalPath="$(SolutionDir)">
-                       <Output TaskParameter="Revision" PropertyName="Revision" />
-               </SvnVersion>
-       </Target>
-
-       <PropertyGroup>
-               <Major>1</Major>
-               <Minor>0</Minor>
-               <Build>4</Build>
-               <AssemblyCompany>http://www.aspview.com</AssemblyCompany>
-               <AssemblyProduct>Castle.MonoRail.Views.AspView</AssemblyProduct>
-               <AssemblyCopyright>Copyright © Ken Egozi 2006-2007</AssemblyCopyright>
-               <ComVisible>false</ComVisible>
-               <CLSCompliant>true</CLSCompliant>
-       </PropertyGroup>
-
-       <Target Name="Version" DependsOnTargets="GetRevision">
-    <Message Text="Version: $(Major).$(Minor).$(Build).$(Revision)"/>
-  </Target>
-
-</Project>
\ No newline at end of file

File [removed]: Default.build
Delta lines: +0 -91
===================================================================
--- viewengines/aspview/trunk/Default.build     2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Default.build     2008-07-16 11:49:06 UTC (rev 592)
@@ -1,91 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
-       <PropertyGroup>
-    <SolutionDir>$(MSBuildProjectDirectory)</SolutionDir>
-    <Configuration Condition="!Exists('$(Configuration)')">Debug</Configuration>
-    <AspViewBinDir>$(SolutionDir)\Castle.MonoRail.Views.AspView\Bin\$(Configuration)</AspViewBinDir>
-    <VCompileBinDir>$(SolutionDir)\VCompile\Bin\$(Configuration)</VCompileBinDir>
-    <BuildDir>$(SolutionDir)\Build</BuildDir>
-    <BuildDllDir>$(BuildDir)\$(Configuration)</BuildDllDir>
-       </PropertyGroup>
-
-       <Import Project="Common.Build.xml" />
-
-  <Target Name="CreateBuildDir">
-               <MakeDir Directories="$(BuildDir)"></MakeDir>
-  </Target>
-
-  <Target Name="BuildAndTest" DependsOnTargets="Build;Test;CopyOutputToBuildDir;Zip">
-               <Message Text="BuildAndTest ..." />
-  </Target>
-
-  <Target Name="ReBuildAndTest" DependsOnTargets="Clean;BuildAndTest;">
-               <Message Text="BuildAndTest ..." />
-  </Target>
-
-  <Target Name="GenerateAssemblyInfo">
-               <Message Text="Generating AssemblyInfo ..." />
-               <MSBuild        Projects="GenerateAssemblyInfo.build" />
-  </Target>
-
-       <Target Name="Clean">
-               <Message Text="Cleaning build folders ..." />
-               <MSBuild        Projects="AspView.sln"
-                                                       Properties="Configuration=$(Configuration)"
-                                                       Targets="Clean" />
-       </Target>
-
-       <Target Name="Build" DependsOnTargets="GenerateAssemblyInfo;">
-               <Message Text="Building solution ..." />
-               <MSBuild        Projects="AspView.sln"
-                                                       Properties="Configuration=$(Configuration)" />
-       </Target>
-
-
-  <Target Name="Rebuild" DependsOnTargets="Clean;Build;">
-               <Message Text="Rebuild ..." />
-  </Target>
-
-       <Target Name="CopyOutputToBuildDir" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Deleting old Dll files from build directory ..." />
-               <RemoveDir Directories="$(BuildDllDir)"></RemoveDir>
-               <MakeDir Directories="$(BuildDllDir)"></MakeDir>
-
-               <Message Text="Copying Dll files to build directory ..." />
-               <CreateItem Include="$(AspViewBinDir)\Castle.MonoRail.Views.AspView.dll;$(AspViewBinDir)\Castle.MonoRail.Views.AspView.pdb;$(VCompileBinDir)\VCompile.exe;$(VCompileBinDir)\VCompile.pdb;">
-                       <Output ItemName="DllFiles" TaskParameter="Include"/>
-               </CreateItem>
-               <Copy   SourceFiles="@(DllFiles)"
-                                       DestinationFolder="$(BuildDllDir)" />
-       </Target>
-
-       <Target Name="Zip" DependsOnTargets="GetRevision;">
-               <CreateProperty value="$(BuildDir)\AspView-$(Major).$(Minor).$(Build).$(Revision)-$(Configuration).zip">
-                       <Output TaskParameter="Value"
-                                                       PropertyName="ZipFileName" />
-               </CreateProperty>
-               <CreateItem Include="$(BuildDllDir)\*.*">
-                       <Output ItemName="ZipFiles" TaskParameter="Include"/>
-               </CreateItem>
-               <Zip    Files="@(ZipFiles)" ZipLevel="9"
-                                       WorkingDirectory="$(MSBuildProjectDirectory)"
-                                       ZipFileName="$(ZipFileName)" />
-       </Target>
-
-        <Target Name="Test" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Running tests ..." />
-    <Exec WorkingDirectory="$(SolutionDir)\Castle.Tools.SQLQueryGenerator.Tests\bin\$(Configuration)"
-                                       Command="&quot;$(SolutionDir)\SolutionItems\Lib\xunit.console.exe&quot; Castle.Tools.SQLQueryGenerator.Tests.dll /xml &quot;$(BuildDir)\test-results.xml&quot;"
-    />
-
-  </Target>
-
-  <Target Name="Test" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Running tests ..." />
-               <Exec WorkingDirectory="$(SolutionDir)\Castle.MonoRail.Views.AspView.Tests\bin\$(Configuration)"
-                                       Command="&quot;$(SolutionDir)\Solution Items\Tools\xunit\xunit.console.exe&quot; Castle.MonoRail.Views.AspView.Tests.dll /xml &quot;$(BuildDir)\test-results.xml&quot;"
-    />
-       </Target>
-
-</Project>
\ No newline at end of file

File [removed]: GenerateAssemblyInfo.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/GenerateAssemblyInfo.bat  2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/GenerateAssemblyInfo.bat  2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-msbuild GenerateAssemblyInfo.build /t:GenerateAssemblyInfo
-pause

File [removed]: GenerateAssemblyInfo.build
Delta lines: +0 -11
===================================================================
--- viewengines/aspview/trunk/GenerateAssemblyInfo.build        2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/GenerateAssemblyInfo.build        2008-07-16 11:49:06 UTC (rev 592)
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="GenerateAssemblyInfo" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
-       <Import Project="$(MSBuildProjectDirectory)\Solution Items\Lib\MSBuild\MSBuild.Community.Tasks.Targets"/>
-
-  <Target Name="GenerateAssemblyInfo">
-    <MSBuild Projects="$(MSBuildProjectDirectory)\Castle.MonoRail.Views.AspView\GenerateAssemblyInfo.build" />
-    <MSBuild Projects="$(MSBuildProjectDirectory)\VCompile\GenerateAssemblyInfo.build" />
-       </Target>
-
-</Project>
\ No newline at end of file

File [removed]: HowToBuild.txt
Delta lines: +0 -24
===================================================================
--- viewengines/aspview/trunk/HowToBuild.txt    2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/HowToBuild.txt    2008-07-16 11:49:06 UTC (rev 592)
@@ -1,24 +0,0 @@
-===Build===
-
-In order to build, use "Build-Debug.bat" or "Build-Release.bat".
-It would build the projects, run tests, and output to Build folder
-
-
-
-
-
-===Assembly Info===
-
-In order to open in Visual Studio or any other IDE, you should run the above build process, or alternatively run GenerateAssemblyInfo.bat in order to get the needed AssemblyInfo.cs files generated in the main projects (Castle.MonoRail.Views.AspView and VCompile)
-After that you can use Visual Studio (or any other IDE) to work on the source code.
-
-
-
-
-
-===IMPORTANT===
-
-The GenerateAssemblyInfo target generates AssemblyInfo file, with a revision number acquired from the subversion revision number of the wc.
-For that target to run, you must have svnversion.exe in c:\Program Files\Subversion\bin directory.
-If you do not have the subversion client tools, you can get them from:
-http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91
\ No newline at end of file

File [added]: readme.txt
Delta lines: +1 -0
===================================================================
--- viewengines/aspview/trunk/readme.txt                                (rev 0)
+++ viewengines/aspview/trunk/readme.txt        2008-07-16 11:49:06 UTC (rev 592)
@@ -0,0 +1 @@
+AspView was incorporated into the MonoRail's core and is no longer available at the contrib project
\ No newline at end of file





--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Castle Project Development List" group.
To post to this group, send email to castle-project-devel@...
To unsubscribe from this group, send email to castle-project-devel-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/castle-project-devel?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: [ken.egozi commit: 592]: /viewengines/aspview/trunk/

by Ken Egozi :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Well, the branch on the contrib is in lieu with RC3 - so people who are emotionally attached to RC3 can still use that, so I think we might want to keep it until we get another release fot people to get attached to.
I'm sorry for the added mess, but look at the bright side - now it'd be much easier to get trunk MR + trunk AspView as it's on the same build.


one more thing.
I've applied most of the open patches before moving. a few though weren't applied, due to verious problems, so all of you with AspView issues should now move them to the correct place in JIRA and recreate patches against the new location. notice the few changes, like using NUnit for tests instead of xunit, and putting end-to-end view templates to test under the test project/RenderingTests/View. look there also for the way to invoke view rendering tests (basically you inherit from IntegrationViewTestFixture)

oh, another one more thing (ha ha).
could someone with VS2005 please create csproj files for AspView+Tests+VCompile and update Monorail's sln?
when doing that, please make sure you reference NUnit from the lib folder and not from the GAC to avoid NUnit versioning hell


thx again for all the people voting confidence in AspView.



On Thu, Jul 17, 2008 at 11:09 AM, Roelof Blom <roelof.blom@...> wrote:
Finally there it is, nice one Ken.

I noticed there are still several old AspView branches in contrib, guess they can be removed now to prevent confusion.

-- Roelof.

On Wed, Jul 16, 2008 at 1:49 PM, <notification@...> wrote:

User: ken.egozi
Date: 2008/07/16 04:49 AM

Added:
 /viewengines/aspview/trunk/
 readme.txt

Removed:
 /viewengines/aspview/trunk/
 2008.build, AspView-vs2008.sln, AspView.sln, Build-2008-Debug.bat, Build-2008-Release.bat, Build-Debug.bat, Build-Release.bat, Common.Build.xml, Default.build, GenerateAssemblyInfo.bat, GenerateAssemblyInfo.build, HowToBuild.txt
 /viewengines/aspview/trunk/AspViewTestSite/
 /viewengines/aspview/trunk/Castle.MonoRail.Views.AspView.Tests/
 /viewengines/aspview/trunk/Castle.MonoRail.Views.AspView/
 /viewengines/aspview/trunk/Solution Items/
 /viewengines/aspview/trunk/TestModel/
 /viewengines/aspview/trunk/ViewUpgrader.Tests/
 /viewengines/aspview/trunk/ViewUpgrader/
 /viewengines/aspview/trunk/vcompile/

Log:
 AspView has been moved to MonoRail's core

File Changes:

Directory: /viewengines/aspview/trunk/
======================================

File [removed]: 2008.build
Delta lines: +0 -91
===================================================================
--- viewengines/aspview/trunk/2008.build        2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/2008.build        2008-07-16 11:49:06 UTC (rev 592)
@@ -1,91 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
-       <PropertyGroup>
-    <SolutionDir>$(MSBuildProjectDirectory)</SolutionDir>
-    <Configuration Condition="!Exists('$(Configuration)')">Debug</Configuration>
-    <AspViewBinDir>$(SolutionDir)\Castle.MonoRail.Views.AspView\Bin\$(Configuration)</AspViewBinDir>
-    <VCompileBinDir>$(SolutionDir)\VCompile\Bin\$(Configuration)</VCompileBinDir>
-    <BuildDir>$(SolutionDir)\Build2008</BuildDir>
-    <BuildDllDir>$(BuildDir)\$(Configuration)</BuildDllDir>
-       </PropertyGroup>
-
-       <Import Project="Common.Build.xml" />
-
-  <Target Name="CreateBuildDir">
-               <MakeDir Directories="$(BuildDir)"></MakeDir>
-  </Target>
-
-  <Target Name="BuildAndTest" DependsOnTargets="Build;Test;CopyOutputToBuildDir;Zip">
-               <Message Text="BuildAndTest ..." />
-  </Target>
-
-  <Target Name="ReBuildAndTest" DependsOnTargets="Clean;BuildAndTest;">
-               <Message Text="BuildAndTest ..." />
-  </Target>
-
-  <Target Name="GenerateAssemblyInfo">
-               <Message Text="Generating AssemblyInfo ..." />
-               <MSBuild        Projects="GenerateAssemblyInfo.build" />
-  </Target>
-
-       <Target Name="Clean">
-               <Message Text="Cleaning build folders ..." />
-               <MSBuild        Projects="AspView-vs2008.sln"
-                                                       Properties="Configuration=$(Configuration)"
-                                                       Targets="Clean" />
-       </Target>
-
-       <Target Name="Build" DependsOnTargets="GenerateAssemblyInfo;">
-               <Message Text="Building solution ..." />
-               <MSBuild        Projects="AspView-vs2008.sln"
-                                                       Properties="Configuration=$(Configuration)" />
-       </Target>
-
-
-  <Target Name="Rebuild" DependsOnTargets="Clean;Build;">
-               <Message Text="Rebuild ..." />
-  </Target>
-
-       <Target Name="CopyOutputToBuildDir" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Deleting old Dll files from build directory ..." />
-               <RemoveDir Directories="$(BuildDllDir)"></RemoveDir>
-               <MakeDir Directories="$(BuildDllDir)"></MakeDir>
-
-               <Message Text="Copying Dll files to build directory ..." />
-               <CreateItem Include="$(AspViewBinDir)\Castle.MonoRail.Views.AspView.dll;$(AspViewBinDir)\Castle.MonoRail.Views.AspView.pdb;$(VCompileBinDir)\VCompile.exe;$(VCompileBinDir)\VCompile.pdb;">
-                       <Output ItemName="DllFiles" TaskParameter="Include"/>
-               </CreateItem>
-               <Copy   SourceFiles="@(DllFiles)"
-                                       DestinationFolder="$(BuildDllDir)" />
-       </Target>
-
-       <Target Name="Zip" DependsOnTargets="GetRevision;">
-               <CreateProperty value="$(BuildDir)\AspView-$(Major).$(Minor).$(Build).$(Revision)-$(Configuration).zip">
-                       <Output TaskParameter="Value"
-                                                       PropertyName="ZipFileName" />
-               </CreateProperty>
-               <CreateItem Include="$(BuildDllDir)\*.*">
-                       <Output ItemName="ZipFiles" TaskParameter="Include"/>
-               </CreateItem>
-               <Zip    Files="@(ZipFiles)" ZipLevel="9"
-                                       WorkingDirectory="$(MSBuildProjectDirectory)"
-                                       ZipFileName="$(ZipFileName)" />
-       </Target>
-
-        <Target Name="Test" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Running tests ..." />
-    <Exec WorkingDirectory="$(SolutionDir)\Castle.Tools.SQLQueryGenerator.Tests\bin\$(Configuration)"
-                                       Command="&quot;$(SolutionDir)\SolutionItems\Lib\xunit.console.exe&quot; Castle.Tools.SQLQueryGenerator.Tests.dll /xml &quot;$(BuildDir)\test-results.xml&quot;"
-    />
-
-  </Target>
-
-  <Target Name="Test" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Running tests ..." />
-               <Exec WorkingDirectory="$(SolutionDir)\Castle.MonoRail.Views.AspView.Tests\bin\$(Configuration)"
-                                       Command="&quot;$(SolutionDir)\Solution Items\Tools\xunit\xunit.console.exe&quot; Castle.MonoRail.Views.AspView.Tests.dll /xml &quot;$(BuildDir)\test-results.xml&quot;"
-    />
-       </Target>
-
-</Project>
\ No newline at end of file

File [removed]: AspView-vs2008.sln
Delta lines: +0 -96
===================================================================
--- viewengines/aspview/trunk/AspView-vs2008.sln        2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/AspView-vs2008.sln        2008-07-16 11:49:06 UTC (rev 592)
@@ -1,96 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual Studio 2008
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{648DC04C-1AAE-4113-A8E9-097F444AA0D8}"
-       ProjectSection(SolutionItems) = preProject
-               Solution Items\KenEgoziOpenSource.snk = Solution Items\KenEgoziOpenSource.snk
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Lib", "Lib", "{AD4AC238-0320-4805-88B4-C9A77D4C09F6}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Castle", "Castle", "{7C0F01C7-F300-403E-8C6C-6347F1A544D8}"
-       ProjectSection(SolutionItems) = preProject
-               Solution Items\Lib\Castle\Castle.Core.dll = Solution Items\Lib\Castle\Castle.Core.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.ActiveRecordSupport.dll = Solution Items\Lib\Castle\Castle.MonoRail.ActiveRecordSupport.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.Framework.dll = Solution Items\Lib\Castle\Castle.MonoRail.Framework.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.TestSupport.dll = Solution Items\Lib\Castle\Castle.MonoRail.TestSupport.dll
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{BA891B1F-4F6A-42FC-B004-C58B334EC6CB}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{13997A22-812F-4D17-B2EB-D31DD9C15C0C}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Test Sites", "Test Sites", "{C5778A42-85BC-458A-8945-443CE498F5AB}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Castle.MonoRail.Views.AspView-vs2008", "Castle.MonoRail.Views.AspView\Castle.MonoRail.Views.AspView-vs2008.csproj", "{41B2C873-254B-4BC5-8514-AD33ED3B5934}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VCompile-vs2008", "vcompile\VCompile-vs2008.csproj", "{36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Castle.MonoRail.Views.AspView.Tests-vs2008", "Castle.MonoRail.Views.AspView.Tests\Castle.MonoRail.Views.AspView.Tests-vs2008.csproj", "{5797C3B2-2994-42F4-9FCE-12B288A8A1E8}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewUpgrader-vs2008", "ViewUpgrader\ViewUpgrader-vs2008.csproj", "{7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewUpgrader.Tests-vs2008", "ViewUpgrader.Tests\ViewUpgrader.Tests-vs2008.csproj", "{8ADF376A-9298-4CBA-B3CD-7F24FE00A006}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspViewTestSite-vs2008", "AspViewTestSite\AspViewTestSite-vs2008.csproj", "{65929B65-C749-43C8-9EA8-5EFFFAE16A5C}"
-       ProjectSection(ProjectDependencies) = postProject
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14} = {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}
-       EndProjectSection
-EndProject
-Global
-       GlobalSection(SolutionConfigurationPlatforms) = preSolution
-               Debug|Any CPU = Debug|Any CPU
-               Release|Any CPU = Release|Any CPU
-               Run vcompile in Debug|Any CPU = Run vcompile in Debug|Any CPU
-       EndGlobalSection
-       GlobalSection(ProjectConfigurationPlatforms) = postSolution
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Release|Any CPU.Build.0 = Release|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Release|Any CPU.Build.0 = Release|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Release|Any CPU.Build.0 = Release|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Release|Any CPU.Build.0 = Release|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Run vcompile in Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Run vcompile in Debug|Any CPU.Build.0 = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Release|Any CPU.Build.0 = Release|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Run vcompile in Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Run vcompile in Debug|Any CPU.Build.0 = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Release|Any CPU.Build.0 = Release|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-       EndGlobalSection
-       GlobalSection(SolutionProperties) = preSolution
-               HideSolutionNode = FALSE
-       EndGlobalSection
-       GlobalSection(NestedProjects) = preSolution
-               {AD4AC238-0320-4805-88B4-C9A77D4C09F6} = {648DC04C-1AAE-4113-A8E9-097F444AA0D8}
-               {7C0F01C7-F300-403E-8C6C-6347F1A544D8} = {AD4AC238-0320-4805-88B4-C9A77D4C09F6}
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B} = {BA891B1F-4F6A-42FC-B004-C58B334EC6CB}
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006} = {BA891B1F-4F6A-42FC-B004-C58B334EC6CB}
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C} = {C5778A42-85BC-458A-8945-443CE498F5AB}
-       EndGlobalSection
-EndGlobal

File [removed]: AspView.sln
Delta lines: +0 -144
===================================================================
--- viewengines/aspview/trunk/AspView.sln       2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/AspView.sln       2008-07-16 11:49:06 UTC (rev 592)
@@ -1,144 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual Studio 2005
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Castle.MonoRail.Views.AspView", "Castle.MonoRail.Views.AspView\Castle.MonoRail.Views.AspView.csproj", "{41B2C873-254B-4BC5-8514-AD33ED3B5934}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VCompile", "vcompile\VCompile.csproj", "{36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Castle.MonoRail.Views.AspView.Tests", "Castle.MonoRail.Views.AspView.Tests\Castle.MonoRail.Views.AspView.Tests.csproj", "{5797C3B2-2994-42F4-9FCE-12B288A8A1E8}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{648DC04C-1AAE-4113-A8E9-097F444AA0D8}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-       ProjectSection(SolutionItems) = preProject
-               Solution Items\KenEgoziOpenSource.snk = Solution Items\KenEgoziOpenSource.snk
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Lib", "Lib", "{AD4AC238-0320-4805-88B4-C9A77D4C09F6}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Castle", "Castle", "{7C0F01C7-F300-403E-8C6C-6347F1A544D8}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-       ProjectSection(SolutionItems) = preProject
-               Solution Items\Lib\Castle\Castle.Core.dll = Solution Items\Lib\Castle\Castle.Core.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.ActiveRecordSupport.dll = Solution Items\Lib\Castle\Castle.MonoRail.ActiveRecordSupport.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.Framework.dll = Solution Items\Lib\Castle\Castle.MonoRail.Framework.dll
-               Solution Items\Lib\Castle\Castle.MonoRail.TestSupport.dll = Solution Items\Lib\Castle\Castle.MonoRail.TestSupport.dll
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewUpgrader", "ViewUpgrader\ViewUpgrader.csproj", "{7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewUpgrader.Tests", "ViewUpgrader.Tests\ViewUpgrader.Tests.csproj", "{8ADF376A-9298-4CBA-B3CD-7F24FE00A006}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{BA891B1F-4F6A-42FC-B004-C58B334EC6CB}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{13997A22-812F-4D17-B2EB-D31DD9C15C0C}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Test Sites", "Test Sites", "{C5778A42-85BC-458A-8945-443CE498F5AB}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspViewTestSite", "AspViewTestSite\AspViewTestSite.csproj", "{65929B65-C749-43C8-9EA8-5EFFFAE16A5C}"
-       ProjectSection(WebsiteProperties) = preProject
-               Debug.AspNetCompiler.Debug = "True"
-               Release.AspNetCompiler.Debug = "False"
-       EndProjectSection
-       ProjectSection(ProjectDependencies) = postProject
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14} = {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}
-       EndProjectSection
-EndProject
-Global
-       GlobalSection(SolutionConfigurationPlatforms) = preSolution
-               Debug|Any CPU = Debug|Any CPU
-               Release|Any CPU = Release|Any CPU
-               Run vcompile in Debug|Any CPU = Run vcompile in Debug|Any CPU
-       EndGlobalSection
-       GlobalSection(ProjectConfigurationPlatforms) = postSolution
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Release|Any CPU.Build.0 = Release|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Release|Any CPU.Build.0 = Release|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Release|Any CPU.Build.0 = Release|Any CPU
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Release|Any CPU.Build.0 = Release|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Run vcompile in Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B}.Run vcompile in Debug|Any CPU.Build.0 = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Release|Any CPU.Build.0 = Release|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Run vcompile in Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006}.Run vcompile in Debug|Any CPU.Build.0 = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Release|Any CPU.Build.0 = Release|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Run vcompile in Debug|Any CPU.ActiveCfg = Run vcompile in Debug|Any CPU
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C}.Run vcompile in Debug|Any CPU.Build.0 = Run vcompile in Debug|Any CPU
-       EndGlobalSection
-       GlobalSection(SolutionProperties) = preSolution
-               HideSolutionNode = FALSE
-       EndGlobalSection
-       GlobalSection(NestedProjects) = preSolution
-               {AD4AC238-0320-4805-88B4-C9A77D4C09F6} = {648DC04C-1AAE-4113-A8E9-097F444AA0D8}
-               {7C0F01C7-F300-403E-8C6C-6347F1A544D8} = {AD4AC238-0320-4805-88B4-C9A77D4C09F6}
-               {7CBE3151-92D7-4432-8EA0-91E49FBF4F4B} = {BA891B1F-4F6A-42FC-B004-C58B334EC6CB}
-               {8ADF376A-9298-4CBA-B3CD-7F24FE00A006} = {BA891B1F-4F6A-42FC-B004-C58B334EC6CB}
-               {41B2C873-254B-4BC5-8514-AD33ED3B5934} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {5797C3B2-2994-42F4-9FCE-12B288A8A1E8} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {36052ED8-861B-49E3-B2D8-9C7DCDAF7E14} = {13997A22-812F-4D17-B2EB-D31DD9C15C0C}
-               {65929B65-C749-43C8-9EA8-5EFFFAE16A5C} = {C5778A42-85BC-458A-8945-443CE498F5AB}
-       EndGlobalSection
-EndGlobal

File [removed]: Build-2008-Debug.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/Build-2008-Debug.bat      2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Build-2008-Debug.bat      2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-c:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe 2008.Build
-pause
\ No newline at end of file

File [removed]: Build-2008-Release.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/Build-2008-Release.bat    2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Build-2008-Release.bat    2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-c:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe 2008.Build /property:Configuration=Release
-pause
\ No newline at end of file

File [removed]: Build-Debug.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/Build-Debug.bat   2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Build-Debug.bat   2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-msbuild Default.Build
-pause
\ No newline at end of file

File [removed]: Build-Release.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/Build-Release.bat 2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Build-Release.bat 2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-msbuild Default.Build /property:Configuration=Release
-pause
\ No newline at end of file

File [removed]: Common.Build.xml
Delta lines: +0 -36
===================================================================
--- viewengines/aspview/trunk/Common.Build.xml  2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Common.Build.xml  2008-07-16 11:49:06 UTC (rev 592)
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Version" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
-       <PropertyGroup>
-    <SolutionDir Condition="$(SolutionDir) == ''">$(MSBuildProjectDirectory)\..</SolutionDir>
-    <SolutionItemsDir>$(SolutionDir)\Solution Items</SolutionItemsDir>
-    <LibDir>$(SolutionItemsDir)\Lib</LibDir>
-    <CastleLibDir>$(LibDir)\Castle</CastleLibDir>
-    <MSBUildLibDir>$(LibDir)\MSBuild</MSBUildLibDir>
-    <ToolsDir>$(SolutionItemsDir)\Tools</ToolsDir>
-       </PropertyGroup>
-
-       <Import Project="$(MSBUildLibDir)\MSBuild.Community.Tasks.Targets"/>
-
-       <Target Name="GetRevision">
-               <SvnVersion LocalPath="$(SolutionDir)">
-                       <Output TaskParameter="Revision" PropertyName="Revision" />
-               </SvnVersion>
-       </Target>
-
-       <PropertyGroup>
-               <Major>1</Major>
-               <Minor>0</Minor>
-               <Build>4</Build>
-               <AssemblyCompany>http://www.aspview.com</AssemblyCompany>
-               <AssemblyProduct>Castle.MonoRail.Views.AspView</AssemblyProduct>
-               <AssemblyCopyright>Copyright © Ken Egozi 2006-2007</AssemblyCopyright>
-               <ComVisible>false</ComVisible>
-               <CLSCompliant>true</CLSCompliant>
-       </PropertyGroup>
-
-       <Target Name="Version" DependsOnTargets="GetRevision">
-    <Message Text="Version: $(Major).$(Minor).$(Build).$(Revision)"/>
-  </Target>
-
-</Project>
\ No newline at end of file

File [removed]: Default.build
Delta lines: +0 -91
===================================================================
--- viewengines/aspview/trunk/Default.build     2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/Default.build     2008-07-16 11:49:06 UTC (rev 592)
@@ -1,91 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
-       <PropertyGroup>
-    <SolutionDir>$(MSBuildProjectDirectory)</SolutionDir>
-    <Configuration Condition="!Exists('$(Configuration)')">Debug</Configuration>
-    <AspViewBinDir>$(SolutionDir)\Castle.MonoRail.Views.AspView\Bin\$(Configuration)</AspViewBinDir>
-    <VCompileBinDir>$(SolutionDir)\VCompile\Bin\$(Configuration)</VCompileBinDir>
-    <BuildDir>$(SolutionDir)\Build</BuildDir>
-    <BuildDllDir>$(BuildDir)\$(Configuration)</BuildDllDir>
-       </PropertyGroup>
-
-       <Import Project="Common.Build.xml" />
-
-  <Target Name="CreateBuildDir">
-               <MakeDir Directories="$(BuildDir)"></MakeDir>
-  </Target>
-
-  <Target Name="BuildAndTest" DependsOnTargets="Build;Test;CopyOutputToBuildDir;Zip">
-               <Message Text="BuildAndTest ..." />
-  </Target>
-
-  <Target Name="ReBuildAndTest" DependsOnTargets="Clean;BuildAndTest;">
-               <Message Text="BuildAndTest ..." />
-  </Target>
-
-  <Target Name="GenerateAssemblyInfo">
-               <Message Text="Generating AssemblyInfo ..." />
-               <MSBuild        Projects="GenerateAssemblyInfo.build" />
-  </Target>
-
-       <Target Name="Clean">
-               <Message Text="Cleaning build folders ..." />
-               <MSBuild        Projects="AspView.sln"
-                                                       Properties="Configuration=$(Configuration)"
-                                                       Targets="Clean" />
-       </Target>
-
-       <Target Name="Build" DependsOnTargets="GenerateAssemblyInfo;">
-               <Message Text="Building solution ..." />
-               <MSBuild        Projects="AspView.sln"
-                                                       Properties="Configuration=$(Configuration)" />
-       </Target>
-
-
-  <Target Name="Rebuild" DependsOnTargets="Clean;Build;">
-               <Message Text="Rebuild ..." />
-  </Target>
-
-       <Target Name="CopyOutputToBuildDir" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Deleting old Dll files from build directory ..." />
-               <RemoveDir Directories="$(BuildDllDir)"></RemoveDir>
-               <MakeDir Directories="$(BuildDllDir)"></MakeDir>
-
-               <Message Text="Copying Dll files to build directory ..." />
-               <CreateItem Include="$(AspViewBinDir)\Castle.MonoRail.Views.AspView.dll;$(AspViewBinDir)\Castle.MonoRail.Views.AspView.pdb;$(VCompileBinDir)\VCompile.exe;$(VCompileBinDir)\VCompile.pdb;">
-                       <Output ItemName="DllFiles" TaskParameter="Include"/>
-               </CreateItem>
-               <Copy   SourceFiles="@(DllFiles)"
-                                       DestinationFolder="$(BuildDllDir)" />
-       </Target>
-
-       <Target Name="Zip" DependsOnTargets="GetRevision;">
-               <CreateProperty value="$(BuildDir)\AspView-$(Major).$(Minor).$(Build).$(Revision)-$(Configuration).zip">
-                       <Output TaskParameter="Value"
-                                                       PropertyName="ZipFileName" />
-               </CreateProperty>
-               <CreateItem Include="$(BuildDllDir)\*.*">
-                       <Output ItemName="ZipFiles" TaskParameter="Include"/>
-               </CreateItem>
-               <Zip    Files="@(ZipFiles)" ZipLevel="9"
-                                       WorkingDirectory="$(MSBuildProjectDirectory)"
-                                       ZipFileName="$(ZipFileName)" />
-       </Target>
-
-        <Target Name="Test" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Running tests ..." />
-    <Exec WorkingDirectory="$(SolutionDir)\Castle.Tools.SQLQueryGenerator.Tests\bin\$(Configuration)"
-                                       Command="&quot;$(SolutionDir)\SolutionItems\Lib\xunit.console.exe&quot; Castle.Tools.SQLQueryGenerator.Tests.dll /xml &quot;$(BuildDir)\test-results.xml&quot;"
-    />
-
-  </Target>
-
-  <Target Name="Test" DependsOnTargets="CreateBuildDir;">
-               <Message Text="Running tests ..." />
-               <Exec WorkingDirectory="$(SolutionDir)\Castle.MonoRail.Views.AspView.Tests\bin\$(Configuration)"
-                                       Command="&quot;$(SolutionDir)\Solution Items\Tools\xunit\xunit.console.exe&quot; Castle.MonoRail.Views.AspView.Tests.dll /xml &quot;$(BuildDir)\test-results.xml&quot;"
-    />
-       </Target>
-
-</Project>
\ No newline at end of file

File [removed]: GenerateAssemblyInfo.bat
Delta lines: +0 -2
===================================================================
--- viewengines/aspview/trunk/GenerateAssemblyInfo.bat  2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/GenerateAssemblyInfo.bat  2008-07-16 11:49:06 UTC (rev 592)
@@ -1,2 +0,0 @@
-msbuild GenerateAssemblyInfo.build /t:GenerateAssemblyInfo
-pause

File [removed]: GenerateAssemblyInfo.build
Delta lines: +0 -11
===================================================================
--- viewengines/aspview/trunk/GenerateAssemblyInfo.build        2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/GenerateAssemblyInfo.build        2008-07-16 11:49:06 UTC (rev 592)
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="GenerateAssemblyInfo" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
-       <Import Project="$(MSBuildProjectDirectory)\Solution Items\Lib\MSBuild\MSBuild.Community.Tasks.Targets"/>
-
-  <Target Name="GenerateAssemblyInfo">
-    <MSBuild Projects="$(MSBuildProjectDirectory)\Castle.MonoRail.Views.AspView\GenerateAssemblyInfo.build" />
-    <MSBuild Projects="$(MSBuildProjectDirectory)\VCompile\GenerateAssemblyInfo.build" />
-       </Target>
-
-</Project>
\ No newline at end of file

File [removed]: HowToBuild.txt
Delta lines: +0 -24
===================================================================
--- viewengines/aspview/trunk/HowToBuild.txt    2008-07-15 05:25:37 UTC (rev 591)
+++ viewengines/aspview/trunk/HowToBuild.txt    2008-07-16 11:49:06 UTC (rev 592)
@@ -1,24 +0,0 @@
-===Build===
-
-In order to build, use "Build-Debug.bat" or "Build-Release.bat".
-It would build the projects, run tests, and output to Build folder
-
-
-
-
-
-===Assembly Info===
-
-In order to open in Visual Studio or any other ID