Skip to content

Commit

Permalink
donwgrade packages to latest stable
Browse files Browse the repository at this point in the history
  • Loading branch information
saturn72 committed Jul 16, 2023
1 parent e8f57a0 commit 79c2ac7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions EfAudit/EfAudit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageId>EfAudit</PackageId>
<PackageVersion>1.1.29</PackageVersion>
<PackageVersion>1.1.30</PackageVersion>
<Authors>roi@saturn72.com</Authors>
<Company>saturn technologies</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand All @@ -20,9 +20,9 @@
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.20" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="7.0.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="6.0.20" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>

Expand Down
1 change: 1 addition & 0 deletions Sample/Server/Domain/Product.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ public record Product
public int Id { get; init; }
public string? Name { get; set; }
public decimal Price { get; set; }
public string? Description { get; set; }
public List<Category>? Categories { get; set; } = new();
}
}

0 comments on commit 79c2ac7

Please sign in to comment.