Skip to content

Commit 89ec0e2

Browse files
authored
Merge pull request #83 from LinqToDB4iSeries/V6.0.0
Upgraded to linq2db v6.0.0
2 parents 68a7591 + 7ef29aa commit 89ec0e2

File tree

771 files changed

+77685
-29721
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

771 files changed

+77685
-29721
lines changed

Build/BannedSymbols.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

Build/linq2db.Providers.props

Lines changed: 0 additions & 105 deletions
This file was deleted.

Build/linq2db.Tests.props

Lines changed: 0 additions & 27 deletions
This file was deleted.

Data/Create Scripts/DB2iSeries.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ CREATE TABLE AllTypes(
211211
, varCharForBitDataType varchar(5) for bit data Default NULL
212212
, varGraphicDataType vargraphic(10) ccsid 13488 Default NULL
213213
, xmlDataType xml Default NULL
214+
, decfloatDataType decfloat(34) Default NULL -- for compatiblity with DB2 tests
214215
)
215216
GO
216217

@@ -244,6 +245,7 @@ INSERT INTO AllTypes(
244245
, varCharForBitDataType
245246
, varGraphicDataType
246247
, xmlDataType
248+
, decFloatDataType
247249
) VALUES (
248250
1000000 --bigIntDataType
249251
, Cast('123' as binary) --binaryDataType
@@ -271,6 +273,7 @@ INSERT INTO AllTypes(
271273
, 'vcfb' --varCharForBitDataType
272274
, 'vargraphic' --varGraphicDataType
273275
, '<root><element strattr="strvalue" intattr="12345"/></root>' --xmlDataType
276+
, 123.123 --decFloatDataType
274277
)
275278
GO
276279

Data/Create Scripts/DB2iSeriesGAS.sql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ CREATE TABLE AllTypes(
212212
, varCharForBitDataType varchar(5) for bit data Default NULL
213213
, varGraphicDataType vargraphic(10) ccsid 13488 Default NULL
214214
, xmlDataType xml Default NULL
215+
, decfloatDataType decfloat(34) Default NULL -- for compatiblity with DB2 tests
215216
)
216217
GO
217218

@@ -244,7 +245,8 @@ INSERT INTO AllTypes(
244245
, varcharDataType
245246
, varCharForBitDataType
246247
, varGraphicDataType
247-
, xmlDataType
248+
, xmlDataType
249+
, decFloatDataType
248250
) VALUES (
249251
1000000 --bigIntDataType
250252
, Cast('123' as binary) --binaryDataType
@@ -272,6 +274,7 @@ INSERT INTO AllTypes(
272274
, 'vcfb' --varCharForBitDataType
273275
, 'vargraphic' --varGraphicDataType
274276
, '<root><element strattr="strvalue" intattr="12345"/></root>' --xmlDataType
277+
, 123.123 --decFloatDataType
275278
)
276279
GO
277280

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
3-
<Version>5.4.0</Version>
3+
<Version>6.0.0</Version>
44

55
<Description>LINQ to DB is a data access technology that provides a run-time infrastructure for managing relational data as objects. This package is a provider for DB2 on the IBM iSeries.</Description>
66
<Authors>Roy Chase, Nikos Sarris</Authors>
77
<RepositoryUrl>https://github.com/LinqToDB4iSeries/Linq2DB4iSeries</RepositoryUrl>
88
<RepositoryType>git</RepositoryType>
99

1010
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<LangVersion>12.0</LangVersion>
11+
<LangVersion>14.0</LangVersion>
1212
<Nullable>enable</Nullable>
1313
<WarningLevel>4</WarningLevel>
1414
<ErrorReport>prompt</ErrorReport>
1515
<NoWarn>1573;1591</NoWarn>
1616
<AnalysisLevel>preview</AnalysisLevel>
1717

18-
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
1918
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
2019
<SignAssembly>True</SignAssembly>
2120
<DelaySign>False</DelaySign>
@@ -36,16 +35,8 @@
3635
</PropertyGroup>
3736

3837
<ItemGroup>
39-
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
40-
<PrivateAssets>all</PrivateAssets>
41-
<IncludeAssets>build; analyzers</IncludeAssets>
42-
</PackageReference>
43-
<AdditionalFiles Include="$(MSBuildThisFileDirectory)/BannedSymbols.txt" />
44-
45-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers">
46-
<PrivateAssets>all</PrivateAssets>
47-
<IncludeAssets>build; analyzers</IncludeAssets>
48-
</PackageReference>
38+
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" PrivateAssets="All" />
39+
<!--<PackageReference Include="Meziantou.Analyzer" PrivateAssets="All" />-->
4940
</ItemGroup>
5041

5142
</Project>

0 commit comments

Comments
 (0)