Build 5.2.32072

--HG--
extra : convert_revision : svn%3Aa83551a4-30f6-4d81-a974-c6ced450ddbf%4030469
This commit is contained in:
dotneteer 2009-10-18 04:11:02 +00:00
parent 550e857127
commit 038eeeba6a
15 changed files with 22 additions and 8 deletions

View file

@ -30,6 +30,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dlrsoft.Asp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Core">
@ -82,7 +83,9 @@
<Content Include="components\Tiprot.Txt" />
<Content Include="components\Tools.Asp" />
<Content Include="test\datetest.asp" />
<Content Include="test\extension.asp" />
<Content Include="test\ifnull.asp" />
<Content Include="test\imports.asp" />
<Content Include="test\with.asp" />
<Content Include="Database\AddDelete.asp" />
<Content Include="Database\adovbs.inc" />
@ -115,12 +118,6 @@
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\asp\Asp.csproj">
<Project>{F076A2D0-5200-42D7-9AEA-9E1260EFB138}</Project>
<Name>Asp</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data\" />
</ItemGroup>

View file

@ -32,4 +32,4 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("0.5.1.31188")]
[assembly: AssemblyFileVersion("0.5.2.32072")]

View file

@ -1,7 +1,6 @@
F:\projects\dotnet35\VBParser80\AspWebApp\obj\Release\ResolveAssemblyReference.cache
F:\projects\dotnet35\VBParser80\AspWebApp\bin\AspWebApp.dll
F:\projects\dotnet35\VBParser80\AspWebApp\bin\AspWebApp.pdb
F:\projects\dotnet35\VBParser80\AspWebApp\bin\Dlrsoft.Asp.dll
F:\projects\dotnet35\VBParser80\AspWebApp\bin\Microsoft.Scripting.ExtensionAttribute.dll
F:\projects\dotnet35\VBParser80\AspWebApp\bin\Microsoft.Dynamic.dll
F:\projects\dotnet35\VBParser80\AspWebApp\bin\Dlrsoft.VBScript.dll

View file

@ -0,0 +1,6 @@
<%
option explicit
dim s
s = "111-222-3333"
response.Write s.RemoveNonNumeric()
%>

View file

@ -0,0 +1,12 @@
<%
imports system
dim sb
sb = new System.Text.StringBuilder()
sb.append("this")
sb.append(" is ")
sb.append(" stringbuilder!")
response.write sb.toString()
%>