Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 6.2.0 #124

Merged
merged 8 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<Version>6.1.1</Version>
<Version>6.2.0</Version>
<Authors>AR Software</Authors>
<Description>Esta libreria contiene las interfaces usadas por los poryectos de SDK y SQL.</Description>
<Copyright>Copyright © AR Software 2024</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<Version>6.1.1</Version>
<Version>6.2.0</Version>
<Authors>AR Software</Authors>
<Description>Este proyecto extiende el proyecto ARSoftware.Contpaqi.Comercial.Sdk y dispone de varios repositorios y servicios que implementan las diferentes funcionalidades del SDK.</Description>
<Copyright>Copyright © AR Software 2024</Copyright>
Expand All @@ -26,10 +26,6 @@
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\ARSoftware.Contpaqi.Comercial.Sdk.Abstractions\ARSoftware.Contpaqi.Comercial.Sdk.Abstractions.csproj" />
<ProjectReference Include="..\ARSoftware.Contpaqi.Comercial.Sdk\ARSoftware.Contpaqi.Comercial.Sdk.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<Version>6.1.1</Version>
<Version>6.2.0</Version>
<Authors>AR Software</Authors>
<Description>Este proyecto tiene declaradas todas las funciones y clases utilizadas por el SDK de CONTPAQi Comercial, CONTPAQi Adminpaq, y CONTPAQi Factura Electronica.</Description>
<Copyright>Copyright © AR Software 2024</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<Version>6.1.1</Version>
<Version>6.2.0</Version>
<Authors>AR Software</Authors>
<Description>Modelo de las bases de datos de CONTPAQi Comercial v9.1.1 Service Pack 1</Description>
<Description>Modelo de las bases de datos de CONTPAQi Comercial v9.2.1</Description>
<Copyright>Copyright © AR Software 2024</Copyright>
<RepositoryUrl>https://github.com/AndresRamos/ARSoftware.Contpaqi.Comercial</RepositoryUrl>
<PackageProjectUrl>https://github.com/AndresRamos/ARSoftware.Contpaqi.Comercial</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,4 +426,6 @@ public partial class admParametros
public string? CREFRESHTOKENCN { get; set; }

public string? CURLWSTORE { get; set; }

public string CLEYENDON { get; set; } = null!;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<Version>6.1.1</Version>
<Version>6.2.0</Version>
<Authors>AR Software</Authors>
<Description>Entity Framework DbContexts para hacer query las bases de datos de CONTPAQi Comercial v9.1.1 Service Pack 1</Description>
<Description>Entity Framework DbContexts para hacer query las bases de datos de CONTPAQi Comercial v9.2.1</Description>
<Copyright>Copyright © AR Software 2024</Copyright>
<RepositoryUrl>https://github.com/AndresRamos/ARSoftware.Contpaqi.Comercial</RepositoryUrl>
<PackageProjectUrl>https://github.com/AndresRamos/ARSoftware.Contpaqi.Comercial</PackageProjectUrl>
Expand All @@ -28,7 +28,7 @@
<ItemGroup>
<PackageReference Include="Ardalis.Specification" Version="8.0.0" />
<PackageReference Include="Ardalis.Specification.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2246,6 +2246,9 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
.HasMaxLength(60)
.IsUnicode(false)
.HasDefaultValue("");
entity.Property(e => e.CLEYENDON)
.IsUnicode(false)
.HasDefaultValue("");
entity.Property(e => e.CLEYENDON1)
.HasMaxLength(253)
.IsUnicode(false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.2">
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down