Build 5.2.32072
--HG-- extra : convert_revision : svn%3Aa83551a4-30f6-4d81-a974-c6ced450ddbf%4030469
This commit is contained in:
parent
550e857127
commit
038eeeba6a
15 changed files with 22 additions and 8 deletions
|
@ -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>
|
||||
|
|
|
@ -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")]
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
6
aspclassiccompiler/AspWebApp/test/extension.asp
Normal file
6
aspclassiccompiler/AspWebApp/test/extension.asp
Normal file
|
@ -0,0 +1,6 @@
|
|||
<%
|
||||
option explicit
|
||||
dim s
|
||||
s = "111-222-3333"
|
||||
response.Write s.RemoveNonNumeric()
|
||||
%>
|
12
aspclassiccompiler/AspWebApp/test/imports.asp
Normal file
12
aspclassiccompiler/AspWebApp/test/imports.asp
Normal 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()
|
||||
|
||||
%>
|
Loading…
Add table
Add a link
Reference in a new issue