-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate hierarchyid into the EF Core codebase
Resolves efcore/EFCore.SqlServer.HierarchyId#113, resolves efcore/EFCore.SqlServer.HierarchyId#119, resolves #365
- Loading branch information
Showing
52 changed files
with
1,737 additions
and
1,508 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 11 additions & 5 deletions
16
src/EFCore.SqlServer.Abstractions/EFCore.SqlServer.Abstractions.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>EntityFrameworkCore.SqlServer.HierarchyId.Abstractions</AssemblyName> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<MinClientVersion>3.6</MinClientVersion> | ||
<AssemblyName>Microsoft.EntityFrameworkCore.SqlServer.Abstractions</AssemblyName> | ||
<RootNamespace>Microsoft.EntityFrameworkCore</RootNamespace> | ||
<Description>Common abstractions for using hierarchyid with EF Core</Description> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Description>Provides abstractions that are used by models in conjunction with the SQL Server EF Core provider | ||
|
||
Commonly Used Types: | ||
Microsoft.EntityFrameworkCore.HierarchyId | ||
</Description> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageTags>$(PackageTags);SQL Server;HierarchyId</PackageTags> | ||
<ImplicitUsings>true</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="dotMorten.Microsoft.SqlServer.Types" Version="1.5.0" /> | ||
<PackageReference Include="Microsoft.SqlServer.Types" Version="160.1000.6" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.