Skip to content

Commit

Permalink
Add package description
Browse files Browse the repository at this point in the history
  • Loading branch information
kant2002 committed Mar 26, 2021
1 parent c7563d5 commit b403866
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CA2000;CA1062;CA1031</NoWarn>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<PackageProjectUrl>https://github.com/kant2002/SqlMarshal</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/kant2002/SqlMarshal</RepositoryUrl>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SqlMarshal
===========================

[![NuGet](https://img.shields.io/nuget/v/StoredProcedureSourceGenerator.svg?style=flat)](https://www.nuget.org/packages/StoredProcedureSourceGenerator/)
[![NuGet](https://img.shields.io/nuget/v/SqlMarshal.svg?style=flat)](https://www.nuget.org/packages/SqlMarshal/)

NativeAOT-friendly mini-ORM which care about nullability checks.

Expand Down
7 changes: 5 additions & 2 deletions SqlMarshal/SqlMarshal.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<NoWarn>$(NoWarn);RS1024</NoWarn>
<!-- Do not include the generator as a lib dependency -->
<IncludeBuildOutput>false</IncludeBuildOutput>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<Authors>Andrii Kurdiumov</Authors>
<PackageTags>orm;sql;micro-orm</PackageTags>
<Description>NativeAOT-friendly mini-ORM which care about nullability checks.</Description>
</PropertyGroup>

<ItemGroup>
Expand All @@ -19,6 +22,6 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
</ItemGroup>
</ItemGroup>

</Project>

0 comments on commit b403866

Please sign in to comment.