Skip to content

Commit

Permalink
update to v8
Browse files Browse the repository at this point in the history
  • Loading branch information
leonibr committed Dec 1, 2023
1 parent 7d1eb86 commit 6b5c577
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions MarquesSolution.sln
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29319.158
# Visual Studio Version 17
VisualStudioVersion = 17.8.34309.116
MinimumVisualStudioVersion = 15.0.26124.0
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{4FABF8F0-B74E-41F3-8906-81AB348AA1D9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Marques.EFCorev3.0.SnakeCase", "src\Marques.EFCore.SnakeCase\Marques.EFCorev6.0.SnakeCase.csproj", "{0CEEA081-1946-45E8-BE25-09E806D98340}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Marques.EFCorev8.0.SnakeCase", "src\Marques.EFCore.SnakeCase\Marques.EFCorev8.0.SnakeCase.csproj", "{0CEEA081-1946-45E8-BE25-09E806D98340}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SnakeCaseTests", "tests\SnakeCaseTests\SnakeCaseTests.csproj", "{499CF1D5-7A27-48B3-9812-53D93D36AA0E}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion sample/SampleConsoleApp/.config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "6.0.2",
"version": "8.0.0",
"commands": [
"dotnet-ef"
]
Expand Down
10 changes: 5 additions & 5 deletions sample/SampleConsoleApp/SampleConsoleApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.2">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Marques.EFCore.SnakeCase\Marques.EFCorev6.0.SnakeCase.csproj" />
<ProjectReference Include="..\..\src\Marques.EFCore.SnakeCase\Marques.EFCorev8.0.SnakeCase.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="17.0">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Authors>Ashley Marques</Authors>
<Description>Extension Method to SnakeCase all EFCore v6.0 database structures(tables,relations,schemas,etc) so your entity 'PersonLog' will become a table 'person_log' and so on. This will help your fellow DBA smile.</Description>
<PackageLicenseUrl>MIT</PackageLicenseUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
</ItemGroup>
<PropertyGroup>
<PackageId>Marques.EFCorev6.0.SnakeCase</PackageId>
<PackageId>Marques.EFCorev8.0.SnakeCase</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>Extension Method to SnakeCase all EFCore database structures(tables,relations,schemas,etc) so your entity 'PersonLog' will become a table 'person_log' and so on.</PackageTags>
Expand Down
12 changes: 6 additions & 6 deletions tests/SnakeCaseTests/SnakeCaseTests.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="Shouldly" Version="4.0.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Marques.EFCore.SnakeCase\Marques.EFCorev6.0.SnakeCase.csproj" />
<ProjectReference Include="..\..\src\Marques.EFCore.SnakeCase\Marques.EFCorev8.0.SnakeCase.csproj" />
</ItemGroup>

</Project>

0 comments on commit 6b5c577

Please sign in to comment.