File tree Expand file tree Collapse file tree 4 files changed +11
-13
lines changed
EntityFramework.Firebird.Tests
FirebirdSql.Data.FirebirdClient.Tests Expand file tree Collapse file tree 4 files changed +11
-13
lines changed Original file line number Diff line number Diff line change 14
14
<ItemGroup >
15
15
<PackageReference Include =" NUnit" Version =" 3.10.1" />
16
16
<PackageReference Include =" NUnitLite" Version =" 3.10.1" />
17
- <PackageReference Include =" EntityFramework" Version =" 6.2.0" />
18
17
</ItemGroup >
19
18
<ItemGroup >
20
19
<ProjectReference Include =" ..\FirebirdSql.Data.FirebirdClient\FirebirdSql.Data.FirebirdClient.csproj" />
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net452</ TargetFramework >
3
+ <TargetFrameworks >net452;netstandard2.1</ TargetFrameworks >
4
4
<AssemblyName >EntityFramework.Firebird</AssemblyName >
5
5
<RootNamespace >EntityFramework.Firebird</RootNamespace >
6
6
<SignAssembly >true</SignAssembly >
44
44
<None Include =" ..\..\..\license.txt" Link =" license.txt" Pack =" true" PackagePath =" " />
45
45
</ItemGroup >
46
46
<ItemGroup >
47
- <PackageReference Include =" EntityFramework" Version =" 6.2 .0" />
47
+ <PackageReference Include =" EntityFramework" Version =" 6.3 .0" />
48
48
</ItemGroup >
49
- <ItemGroup >
50
- <ProjectReference Include =" ..\FirebirdSql.Data.FirebirdClient\FirebirdSql.Data.FirebirdClient.csproj" />
51
- </ItemGroup >
52
- <ItemGroup >
49
+ <ItemGroup Condition =" '$(TargetFramework)'=='net452'" >
53
50
<Reference Include =" System.Configuration" />
54
51
<Reference Include =" Microsoft.CSharp" />
55
52
</ItemGroup >
53
+ <ItemGroup Condition =" '$(TargetFramework)'=='netstandard2.1'" >
54
+ </ItemGroup >
55
+ <ItemGroup >
56
+ <ProjectReference Include =" ..\FirebirdSql.Data.FirebirdClient\FirebirdSql.Data.FirebirdClient.csproj" />
57
+ </ItemGroup >
56
58
</Project >
Original file line number Diff line number Diff line change @@ -159,14 +159,14 @@ public override TypeUsage GetEdmType(TypeUsage storeType)
159
159
case "varchar" :
160
160
newPrimitiveTypeKind = PrimitiveTypeKind . String ;
161
161
isUnbounded = ! TypeHelpers . TryGetMaxLength ( storeType , out maxLength ) ;
162
- isUnicode = true ; //TODO: hardcoded
162
+ isUnicode = true ; //hardcoded
163
163
isFixedLen = false ;
164
164
break ;
165
165
166
166
case "char" :
167
167
newPrimitiveTypeKind = PrimitiveTypeKind . String ;
168
168
isUnbounded = ! TypeHelpers . TryGetMaxLength ( storeType , out maxLength ) ;
169
- isUnicode = true ; //TODO: hardcoded
169
+ isUnicode = true ; //hardcoded
170
170
isFixedLen = true ;
171
171
break ;
172
172
@@ -186,7 +186,7 @@ public override TypeUsage GetEdmType(TypeUsage storeType)
186
186
case "clob" :
187
187
newPrimitiveTypeKind = PrimitiveTypeKind . String ;
188
188
isUnbounded = true ;
189
- isUnicode = true ; //TODO: hardcoded
189
+ isUnicode = true ; //hardcoded
190
190
isFixedLen = false ;
191
191
break ;
192
192
Original file line number Diff line number Diff line change 19
19
<ProjectReference Include =" ..\FirebirdSql.Data.FirebirdClient\FirebirdSql.Data.FirebirdClient.csproj" />
20
20
</ItemGroup >
21
21
<Import Project =" ..\FirebirdSql.Data.TestsBase\FirebirdSql.Data.TestsBase.projitems" Label =" Shared" />
22
-
23
22
<ItemGroup Condition =" '$(TargetFramework)'=='net452'" >
24
23
<Reference Include =" System.Transactions" />
25
24
</ItemGroup >
26
-
27
25
<ItemGroup Condition =" '$(TargetFramework)'=='netcoreapp2.2'" >
28
26
</ItemGroup >
29
-
30
27
<ItemGroup >
31
28
<Service Include =" {82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
32
29
</ItemGroup >
You can’t perform that action at this time.
0 commit comments