Skip to content

Commit

Permalink
added ef 9
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelGerr committed Nov 12, 2024
1 parent ff941bb commit a4ca3a3
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Thinktecture.Runtime.Extensions.sln
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Thinktecture.Runtime.Extens
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Thinktecture.Runtime.Extensions.EntityFrameworkCore8.Tests", "test\Thinktecture.Runtime.Extensions.EntityFrameworkCore8.Tests\Thinktecture.Runtime.Extensions.EntityFrameworkCore8.Tests.csproj", "{6638BCDF-A0A1-4742-B611-A67946CFB803}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Thinktecture.Runtime.Extensions.EntityFrameworkCore9", "src\Thinktecture.Runtime.Extensions.EntityFrameworkCore9\Thinktecture.Runtime.Extensions.EntityFrameworkCore9.csproj", "{08F267E9-A291-4613-BB41-75F164E2415D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Thinktecture.Runtime.Extensions.EntityFrameworkCore9.Tests", "test\Thinktecture.Runtime.Extensions.EntityFrameworkCore9.Tests\Thinktecture.Runtime.Extensions.EntityFrameworkCore9.Tests.csproj", "{03AA88D5-6E6F-4D19-BC90-311ACC7A0BF6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -188,6 +192,14 @@ Global
{6638BCDF-A0A1-4742-B611-A67946CFB803}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6638BCDF-A0A1-4742-B611-A67946CFB803}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6638BCDF-A0A1-4742-B611-A67946CFB803}.Release|Any CPU.Build.0 = Release|Any CPU
{08F267E9-A291-4613-BB41-75F164E2415D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{08F267E9-A291-4613-BB41-75F164E2415D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{08F267E9-A291-4613-BB41-75F164E2415D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{08F267E9-A291-4613-BB41-75F164E2415D}.Release|Any CPU.Build.0 = Release|Any CPU
{03AA88D5-6E6F-4D19-BC90-311ACC7A0BF6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{03AA88D5-6E6F-4D19-BC90-311ACC7A0BF6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{03AA88D5-6E6F-4D19-BC90-311ACC7A0BF6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{03AA88D5-6E6F-4D19-BC90-311ACC7A0BF6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -218,6 +230,8 @@ Global
{47D09BE4-27F2-4C1A-8797-E8AF64E1ACEA} = {AE711F89-41F2-4519-B20D-BA1FAB0EB364}
{C95464AC-EC8A-404A-A8BE-7D6B17F87D80} = {8F117684-7943-4DCE-8861-F2B854924837}
{6638BCDF-A0A1-4742-B611-A67946CFB803} = {AE711F89-41F2-4519-B20D-BA1FAB0EB364}
{08F267E9-A291-4613-BB41-75F164E2415D} = {8F117684-7943-4DCE-8861-F2B854924837}
{03AA88D5-6E6F-4D19-BC90-311ACC7A0BF6} = {AE711F89-41F2-4519-B20D-BA1FAB0EB364}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1C34F508-A60B-4C0E-AFA0-0F4CFFB23603}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>Extends Entity Framework Core to support some components from Thinktecture.Runtime.Extensions.</Description>
<PackageTags>common;EntityFrameworkCore</PackageTags>
<DefineConstants>$(DefineConstants);COMPLEX_TYPES</DefineConstants>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Thinktecture.Runtime.Extensions\Thinktecture.Runtime.Extensions.csproj"/>

<Compile Include="..\Thinktecture.Runtime.Extensions.EntityFrameworkCore.Sources\**\*.cs"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" VersionOverride="9.0.0-rc.2.24474.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<DefineConstants>$(DefineConstants);COMPLEX_TYPES</DefineConstants>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Thinktecture.Runtime.Extensions.EntityFrameworkCore9\Thinktecture.Runtime.Extensions.EntityFrameworkCore9.csproj"/>
<ProjectReference Include="..\..\src\Thinktecture.Runtime.Extensions.SourceGenerator\Thinktecture.Runtime.Extensions.SourceGenerator.csproj" SetTargetFramework="TargetFramework=netstandard2.0" ReferenceOutputAssembly="false" OutputItemType="Analyzer"/>
<ProjectReference Include="..\Thinktecture.Runtime.Extensions.Tests.Shared\Thinktecture.Runtime.Extensions.Tests.Shared.csproj"/>
</ItemGroup>

<ItemGroup>
<Compile Include="..\Thinktecture.Runtime.Extensions.EntityFrameworkCore.Tests.Sources\**\*.cs"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" VersionOverride="9.0.0-rc.2.24474.1" />
</ItemGroup>

</Project>

0 comments on commit a4ca3a3

Please sign in to comment.