Skip to content

Commit

Permalink
Updated version number to beta
Browse files Browse the repository at this point in the history
Updated the MIT License
Added SqlVariant and TinyInt to the DbTypeSupported enum.
  • Loading branch information
erikbartlow committed May 22, 2024
1 parent 0682557 commit 5e8a7aa
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 33 deletions.
16 changes: 8 additions & 8 deletions CodedThought.Core/CodedThought.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@
<PackageId>$(AssemblyName)</PackageId>
<Title>CodedThought Core</Title>
<ProjectName>CodedThought Core</ProjectName>
<AssemblyVersion>8.0.0.9</AssemblyVersion>
<FileVersion>8.0.0.9</FileVersion>
<AssemblyVersion>8.0.0.10</AssemblyVersion>
<FileVersion>8.0.0.10</FileVersion>
<Description>The CodedThought.Core library is a custom entity framework used to primarily abstract the database away from consuming components or clients.</Description>
<Version>8.0.0-alpha-9</Version>
<Version>8.0.0-beta</Version>
<Authors>Erik Bartlow</Authors>
<Company>CodedThought</Company>
<PackageProjectUrl>https://github.com/erikbartlow/CodedThought.Core</PackageProjectUrl>
<Company>Erik Bartlow</Company>
<PackageProjectUrl>https://www.nuget.org/packages/CodedThought.Core</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/erikbartlow/CodedThought.Core</RepositoryUrl>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeReferencedProjects>true</IncludeReferencedProjects>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Copyright>Copyright (c) 2024 Erik Bartlow, All rights reserved</Copyright>
<Copyright>Copyright (c) 2023 Erik Bartlow, All rights reserved</Copyright>
<PackageReleaseNotes>This is a breaking upgrade from CodedThought.Core 7.0.1.35. This version changes the mechanism for loading the specific data provider libraries from file based in the bin folder to dependency injection. Additionally, this version is compiled to work with .NET 8.0.</PackageReleaseNotes>
</PropertyGroup>

Expand All @@ -36,10 +36,10 @@
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
<PackageReference Include="Microsoft.Net.Http.Headers" Version="8.0.5" />
<PackageReference Include="Microsoft.Net.Http.Headers" Version="[2.1.14]" />
<PackageReference Include="System.DirectoryServices" Version="8.0.0" />
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="8.0.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.5" />
<PackageReference Include="System.Drawing.Common" Version="8.0.3" />
<PackageReference Include="System.Runtime.Caching" Version="8.0.0" />
</ItemGroup>

Expand Down
46 changes: 22 additions & 24 deletions CodedThought.Core/Data/DataSpecificEnums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,59 +32,57 @@ public enum DBSupported {
/// <summary>Database types that are supported</summary>
public enum DbTypeSupported {

///<summary>Use for non Unicode strings.</summary>
/// <summary>Use for non Unicode strings.</summary>
dbVarChar = 0,

/// <summary>TinyInt</summary>
dbTinyInt,

///<summary>SmallInt</summary>
/// <summary>SmallInt</summary>
dbInt16,

///<summary>int</summary>
/// <summary>int</summary>
dbInt32,

///<summary>BigInt</summary>
/// <summary>BigInt</summary>
dbInt64,

///<summary>double</summary>
/// <summary>double</summary>
dbDouble,

///<summary>DateTime</summary>
/// <summary>DateTime</summary>
dbDateTime,

///<summary>DateTime2</summary>
/// <summary>DateTime2</summary>
dbDateTime2,

///<summary>Char</summary>
/// <summary>Char</summary>
dbChar,

///<summary>Binary Large Object</summary>
/// <summary>Binary Large Object</summary>
dbBlob,

///<summary>Bit</summary>
/// <summary>Bit</summary>
dbBit,

///<summary>decimal (scaled int)</summary>
/// <summary>decimal (scaled int)</summary>
dbDecimal,

///<summary>Use for binary data for files.</summary>
/// <summary>Use for binary data for files.</summary>
dbImage,

///<summary>Use for binary data for files.</summary>
/// <summary>Use for binary data for files.</summary>
dbVarBinary,

/// <summary>Use for Sql Variant data type if supported.</summary>
dbSqlVariant,

///<summary>GUID</summary>
/// <summary>GUID</summary>
dbGUID,

///<summary>Use for standard string and Unicode character strings.</summary>
/// <summary>Use for standard string and Unicode character strings.</summary>
dbNVarChar,
///<summary> Use for standard time data.</summary>
dbTime
};
/// <summary> Use for standard time data.</summary>
dbTime,
/// <summary>Use for Sql Variant types typically found in MySql and Sql Server</summary>
dbSqlVariant,
/// <summary>Use for the tiny int data typestypically found in MySql and Sql Server</summary>
dbTinyInt
};

/// <summary>Database vendor name enum.</summary>
public enum DBVendor {
Expand Down
2 changes: 1 addition & 1 deletion CodedThought.Core/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) [year] [fullname]
Copyright (c) 2015-2024 Erik Bartlow

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit 5e8a7aa

Please sign in to comment.