-
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #402 from zzzprojects/EFCore_3x_Support
Ef core 3x support
- Loading branch information
Showing
24 changed files
with
285 additions
and
192 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
20 changes: 0 additions & 20 deletions
20
src-console/ConsoleAppEF1.1/ConsoleApp_netcore1.1_EF1.1.2.csproj
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
File renamed without changes.
59 changes: 59 additions & 0 deletions
59
...rameworkCore.DynamicLinq.EFCore2/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore2.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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0"> | ||
<PropertyGroup> | ||
<Description>Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support</Description> | ||
<AssemblyTitle>Microsoft.EntityFrameworkCore.DynamicLinq</AssemblyTitle> | ||
<Authors>ZZZ Projects;Stef Heyenrath</Authors> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<DefineConstants>$(DefineConstants);EFCORE;EFCORE_2X;EFDYNAMICFUNCTIONS</DefineConstants> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AssemblyName>Microsoft.EntityFrameworkCore.DynamicLinq</AssemblyName> | ||
<AssemblyOriginatorKeyFile>Microsoft.EntityFrameworkCore.DynamicLinq.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign> | ||
<PackageTags>system;linq;dynamic;entityframework;core;async</PackageTags> | ||
<PackageReleaseNotes>Bugfixes and new Features. For details see CHANGELOG.md</PackageReleaseNotes> | ||
<PackageProjectUrl>https://dynamic-linq.net/</PackageProjectUrl> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageIconUrl>https://zzzprojects.github.io/images/logo/logo-64.png</PackageIconUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/zzzprojects/System.Linq.Dynamic.Core</RepositoryUrl> | ||
<DefaultLanguage>en-us</DefaultLanguage> | ||
<ProjectGuid>{D3804228-91F4-4502-9595-39584E510001}</ProjectGuid> | ||
<DebugType>full</DebugType> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<Company>ZZZ Projects</Company> | ||
<Copyright>Copyright © ZZZ Projects</Copyright> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(buildType)' == 'azure-pipelines-ci' "> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<!--<IncludeSource>True</IncludeSource> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<PathMap>$(MSBuildProjectDirectory)=/</PathMap>--> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\System.Linq.Dynamic.Core\Res.cs" /> | ||
<Compile Include="..\System.Linq.Dynamic.Core\Compatibility\*.cs" /> | ||
<Compile Include="..\System.Linq.Dynamic.Core\Extensions\*.cs" /> | ||
<Compile Include="..\System.Linq.Dynamic.Core\Validation\*.cs" /> | ||
<Compile Include="..\Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3\*.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="JetBrains.Annotations" Version="10.2.1" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.1" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.