Skip to content

Commit

Permalink
Merge pull request #13 from felsokning/feature/multiple-net-version-r…
Browse files Browse the repository at this point in the history
…estore

Reverting EntityFramework to Have Root Support Multiple Net Versions
  • Loading branch information
felsokning authored Jul 13, 2024
2 parents 70b7a83 + b9e4d10 commit 0342724
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 170 deletions.
57 changes: 0 additions & 57 deletions Felsökning.Tests/EntityFrameworkExtensionsTests.cs

This file was deleted.

14 changes: 6 additions & 8 deletions Felsökning.Tests/Felsökning.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,18 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="MSTest.TestAdapter" Version="3.3.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.3.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="System.IO.Abstractions" Version="21.0.2" />
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="21.0.2" />
<PackageReference Include="xunit.extensibility.core" Version="2.7.1" />
<PackageReference Include="System.IO.Abstractions" Version="21.0.22" />
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="21.0.22" />
<PackageReference Include="xunit.extensibility.core" Version="2.9.0" />
</ItemGroup>

<ItemGroup>
Expand Down
17 changes: 0 additions & 17 deletions Felsökning.Tests/TestDbContext.cs

This file was deleted.

40 changes: 0 additions & 40 deletions Felsökning.Tests/TestDbContextFactory.cs

This file was deleted.

5 changes: 0 additions & 5 deletions Felsökning.Tests/Usings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,4 @@
global using System.Text.Json.Serialization;
global using System.Text.RegularExpressions;


global using Microsoft.Data.Sqlite;
global using Microsoft.EntityFrameworkCore;
global using Microsoft.EntityFrameworkCore.Sqlite;

global using Assert = Microsoft.VisualStudio.TestTools.UnitTesting.Assert;
37 changes: 0 additions & 37 deletions Felsökning/EntityFrameworkExtensions.cs

This file was deleted.

5 changes: 2 additions & 3 deletions Felsökning/Felsökning.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0;net7.0;net8.0;</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
Expand All @@ -26,7 +26,6 @@
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.5" />
<PackageReference Include="System.IO.Abstractions" Version="21.0.2" />
<PackageReference Include="System.IO.Abstractions" Version="21.0.22" />
</ItemGroup>
</Project>
4 changes: 1 addition & 3 deletions Felsökning/Usings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@
global using System.Text;
global using System.Text.Json;
global using System.Text.Json.Serialization;
global using System.Text.RegularExpressions;

global using Microsoft.EntityFrameworkCore;
global using System.Text.RegularExpressions;

0 comments on commit 0342724

Please sign in to comment.