Skip to content

Commit

Permalink
readme files (#117)
Browse files Browse the repository at this point in the history
* added readme files to each project and associated with nuget in csproj
* upgraded JK.Common.Abstractions
  • Loading branch information
jeremyknight-me authored Nov 14, 2024
1 parent fe60daf commit deef18b
Show file tree
Hide file tree
Showing 12 changed files with 48 additions and 14 deletions.
1 change: 1 addition & 0 deletions src/JK.Common.Data.Sql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Unless otherwise noted, all changes made by [@jeremyknight-me](https://github.co
### Changed

- Upgraded `Microsoft.Data.SqlClient` to v5.2.0
- Upgraded `JK.Common.Abstractions` to v2.0.0

### Removed

Expand Down
7 changes: 6 additions & 1 deletion src/JK.Common.Data.Sql/JK.Common.Data.Sql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@
<TargetFrameworks>net9.0;net8.0;netstandard2.0</TargetFrameworks>
<Version>6.0.0</Version>
<Description>A utility library containing extensions to System.Data.SqlClient</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="JK.Common.Abstractions" Version="1.1.0" />
<PackageReference Include="JK.Common.Abstractions" Version="2.0.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
</ItemGroup>

<ItemGroup>
<None Include="README.md" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/JK.Common.Data.Sql/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# JK.Common.Data.Sql

A utility library containing extensions to System.Data.SqlClient
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>4.0.0</Version>
<Description>A utility library containing extensions to Microsoft.EntityFrameworkCore.SqlServer</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net9.0' or '$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
<None Include="README.md" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/JK.Common.EntityFrameworkCore.SqlServer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# JK.Common.EntityFrameworkCore.SqlServer

A utility library containing extensions to Microsoft.EntityFrameworkCore.SqlServer
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Description>A utility library containing extensions to Microsoft.EntityFrameworkCore</Description>
<Version>5.0.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -16,4 +17,8 @@
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/JK.Common.EntityFrameworkCore/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# JK.Common.EntityFrameworkCore

A utility library containing extensions to Microsoft.EntityFrameworkCore.
27 changes: 16 additions & 11 deletions src/JK.Common.FluentValidation/JK.Common.FluentValidation.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net9.0;net8.0;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>4.0.0</Version>
<Description>A utility library containing extensions to FluentValidation</Description>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net9.0;net8.0;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>4.0.0</Version>
<Description>A utility library containing extensions to FluentValidation</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.10.0" />
<PackageReference Include="JK.Common" Version="5.2.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.10.0" />
<PackageReference Include="JK.Common" Version="5.2.0" />
</ItemGroup>

<ItemGroup>
<None Include="README.md" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/JK.Common.FluentValidation/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# JK.Common.FluentValidation

A utility library containing extensions to FluentValidation
1 change: 1 addition & 0 deletions src/JK.Common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Unless otherwise noted, all changes made by [@jeremyknight-me](https://github.co

- `IsNullable` to `IsNullableT` int `TypeHelper`.
- Moved `ServiceLocator` folder to `Patterns` folder.
- Upgraded `JK.Common.Abstractions` to v2.0.0

### Removed

Expand Down
2 changes: 1 addition & 1 deletion src/JK.Common/JK.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="JK.Common.Abstractions" Version="1.1.0" />
<PackageReference Include="JK.Common.Abstractions" Version="2.0.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/JK.Common/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JK.Common Code Library
# JK.Common

A utility library containing boilerplate code, extension methods, new classes, and/or improvements to existing classes.

Expand Down

0 comments on commit deef18b

Please sign in to comment.