Skip to content

Commit 91cee94

Browse files
author
Bruno de Souza Melo
committed
References updated.
1 parent 90fffda commit 91cee94

File tree

7 files changed

+36
-39
lines changed

7 files changed

+36
-39
lines changed

NuvTools.AspNetCore.sln

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuvTools.AspNetCore", "src\
1616
EndProject
1717
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuvTools.AspNetCore.EntityFrameworkCore", "src\NuvTools.AspNetCore.EntityFrameworkCore\NuvTools.AspNetCore.EntityFrameworkCore.csproj", "{A4C3BE0D-A233-4026-9AE9-8B1395418E1A}"
1818
EndProject
19+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuvTools.AspNetCore.Tests", "tests\NuvTools.AspNetCore.Tests\NuvTools.AspNetCore.Tests.csproj", "{9E6FB56C-1DE4-4FFE-AA40-88ED4FB6BF18}"
20+
EndProject
1921
Global
2022
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2123
Debug|Any CPU = Debug|Any CPU
@@ -30,13 +32,18 @@ Global
3032
{A4C3BE0D-A233-4026-9AE9-8B1395418E1A}.Debug|Any CPU.Build.0 = Debug|Any CPU
3133
{A4C3BE0D-A233-4026-9AE9-8B1395418E1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
3234
{A4C3BE0D-A233-4026-9AE9-8B1395418E1A}.Release|Any CPU.Build.0 = Release|Any CPU
35+
{9E6FB56C-1DE4-4FFE-AA40-88ED4FB6BF18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{9E6FB56C-1DE4-4FFE-AA40-88ED4FB6BF18}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{9E6FB56C-1DE4-4FFE-AA40-88ED4FB6BF18}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{9E6FB56C-1DE4-4FFE-AA40-88ED4FB6BF18}.Release|Any CPU.Build.0 = Release|Any CPU
3339
EndGlobalSection
3440
GlobalSection(SolutionProperties) = preSolution
3541
HideSolutionNode = FALSE
3642
EndGlobalSection
3743
GlobalSection(NestedProjects) = preSolution
3844
{77571ABE-3EF7-403F-ACCC-68B539B02AB6} = {0553FC7C-D8CC-444A-970D-CB3B064020F5}
3945
{A4C3BE0D-A233-4026-9AE9-8B1395418E1A} = {0553FC7C-D8CC-444A-970D-CB3B064020F5}
46+
{9E6FB56C-1DE4-4FFE-AA40-88ED4FB6BF18} = {3BD96AEC-23A5-44DF-ABBE-82E683AB587E}
4047
EndGlobalSection
4148
GlobalSection(ExtensibilityGlobals) = postSolution
4249
SolutionGuid = {BF8E6A9B-D224-46ED-9C99-E6DD796B4CC9}

src/NuvTools.AspNetCore.EntityFrameworkCore/Mapper/ServiceWithCrudBase.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33
using NuvTools.AspNetCore.Mapper;
44
using NuvTools.Common.ResultWrapper;
55
using NuvTools.Data.EntityFrameworkCore.Extensions;
6-
using System;
7-
using System.Collections.Generic;
8-
using System.Linq;
96
using System.Linq.Expressions;
10-
using System.Threading.Tasks;
117

128
namespace NuvTools.AspNetCore.EntityFrameworkCore.Mapper;
139

src/NuvTools.AspNetCore.EntityFrameworkCore/NuvTools.AspNetCore.EntityFrameworkCore.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<SignAssembly>True</SignAssembly>
1010
<AssemblyOriginatorKeyFile>NuvTools.AspNetCore.EntityFrameworkCore.snk</AssemblyOriginatorKeyFile>
1111
<Description>EntityFramework Core helper library to use with ASP.NET Aplications.</Description>
12-
<Version>7.0.1</Version>
12+
<Version>7.1.0</Version>
1313
<GenerateDocumentationFile>True</GenerateDocumentationFile>
1414
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
1515
<PackageIcon>icon.png</PackageIcon>
@@ -25,8 +25,9 @@
2525
</PropertyGroup>
2626

2727
<ItemGroup>
28+
<FrameworkReference Include="Microsoft.AspNetCore.App" />
2829
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.10" />
29-
<PackageReference Include="NuvTools.Data.EntityFrameworkCore" Version="7.0.1" />
30+
<PackageReference Include="NuvTools.Data.EntityFrameworkCore" Version="7.1.0" />
3031
</ItemGroup>
3132

3233
<ItemGroup>
@@ -47,7 +48,7 @@
4748
</ItemGroup>
4849

4950
<ItemGroup>
50-
<ProjectReference Include="..\NuvTools.AspNetCore\NuvTools.AspNetCore.csproj" />
51+
<ProjectReference Include="..\NuvTools.AspNetCore\NuvTools.AspNetCore.csproj" />
5152
</ItemGroup>
5253

5354
</Project>

src/NuvTools.AspNetCore/NuvTools.AspNetCore.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<SignAssembly>True</SignAssembly>
1010
<AssemblyOriginatorKeyFile>NuvTools.AspNetCore.snk</AssemblyOriginatorKeyFile>
1111
<Description>Common library with helpers to use with ASP.NET Aplications.</Description>
12-
<Version>7.0.1</Version>
12+
<Version>7.1.0</Version>
1313
<GenerateDocumentationFile>True</GenerateDocumentationFile>
1414
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
1515
<PackageIcon>icon.png</PackageIcon>
@@ -42,7 +42,6 @@
4242
</ItemGroup>
4343

4444
<ItemGroup>
45-
<FrameworkReference Include="Microsoft.AspNetCore.App" />
4645
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
4746
</ItemGroup>
4847

src/NuvTools.AspNetCore/WebUtilities/ObjectExtensions.cs

Lines changed: 0 additions & 30 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
global using NUnit.Framework;
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
8+
<IsPackable>false</IsPackable>
9+
<IsTestProject>true</IsTestProject>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
14+
<PackageReference Include="NUnit" Version="3.13.3" />
15+
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
16+
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
17+
</ItemGroup>
18+
19+
<ItemGroup>
20+
<ProjectReference Include="..\..\src\NuvTools.AspNetCore\NuvTools.AspNetCore.csproj" />
21+
</ItemGroup>
22+
23+
</Project>

0 commit comments

Comments
 (0)