master
关倩倩 10 years ago
parent 0aa0b6cfc9
commit 9fa460ef68

@ -65,6 +65,26 @@
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|AnyCPU'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\Publish\</OutputPath>
<DocumentationFile>Microsoft.VisualBasic.ComputingServices.xml</DocumentationFile>
<Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|x64'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Publish\</OutputPath>
<DocumentationFile>Microsoft.VisualBasic.ComputingServices.xml</DocumentationFile>
<Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />

@ -103,7 +103,7 @@ Namespace LDM.Statements
''' <remarks></remarks>
Public Shared Function TryParse(source As String, Optional types As TypeRegistry = Nothing) As LinqStatement
Dim tokens As ClosureTokens() = ClosureParser.TryParse(source)
Dim statement As LinqStatement = New LinqStatement With {
Dim statement As New LinqStatement With {
._Text = source
}
Return __innerParser(tokens, types, statement)
@ -124,7 +124,7 @@ Namespace LDM.Statements
Optional types As TypeRegistry = Nothing,
Optional text As String = "") As LinqStatement
Dim tokens As ClosureTokens() = ClosureParser.TryParse(source)
Dim statement As LinqStatement = New LinqStatement With {
Dim statement As New LinqStatement With {
._Text = text
}

@ -90,6 +90,27 @@
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|AnyCPU'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\Publish\</OutputPath>
<DocumentationFile>LINQ_v1.0_22.0.122.6544__a540a5d6a87b0ca91c.xml</DocumentationFile>
<Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|x64'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Publish\</OutputPath>
<DocumentationFile>LINQ_v1.0_22.0.122.6544__a540a5d6a87b0ca91c.xml</DocumentationFile>
<Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />

@ -64,6 +64,26 @@
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|AnyCPU'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\Publish\</OutputPath>
<DocumentationFile>RQL.xml</DocumentationFile>
<Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|x64'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Publish\</OutputPath>
<DocumentationFile>RQL.xml</DocumentationFile>
<Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />

Loading…
Cancel
Save