Skip to content

Commit

Permalink
Added PackageReadmeFile
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelGerr committed Dec 9, 2024
1 parent aae6e85 commit 4e4070d
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<PackageProjectUrl>https://github.com/PawelGerr/Thinktecture.Runtime.Extensions</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/PawelGerr/Thinktecture.Runtime.Extensions</RepositoryUrl>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
Expand Down
1 change: 1 addition & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
</PropertyGroup>

<ItemGroup>
<None Include="./../../README.md" Pack="true" PackagePath="" />
<None Include="./../../icon.png" Pack="true" PackagePath="" />
<None Include="./../../LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<Description>Adds better validation support to components from Thinktecture.Runtime.Extensions when using them along with ASP.NET Core.</Description>
<PackageTags>smart-enum;value-object;discriminated-union;EntityFrameworkCore</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Extends Entity Framework Core to support some components from Thinktecture.Runtime.Extensions.</Description>
<PackageTags>common;EntityFrameworkCore</PackageTags>
<PackageTags>smart-enum;value-object;discriminated-union;EntityFrameworkCore</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Extends Entity Framework Core to support some components from Thinktecture.Runtime.Extensions.</Description>
<PackageTags>common;EntityFrameworkCore</PackageTags>
<PackageTags>smart-enum;value-object;discriminated-union;EntityFrameworkCore</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Extends Entity Framework Core to support some components from Thinktecture.Runtime.Extensions.</Description>
<PackageTags>common;EntityFrameworkCore</PackageTags>
<PackageTags>smart-enum;value-object;discriminated-union;EntityFrameworkCore</PackageTags>
<DefineConstants>$(DefineConstants);COMPLEX_TYPES</DefineConstants>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Extends Entity Framework Core to support some components from Thinktecture.Runtime.Extensions.</Description>
<PackageTags>common;EntityFrameworkCore</PackageTags>
<PackageTags>smart-enum;value-object;discriminated-union;EntityFrameworkCore</PackageTags>
<DefineConstants>$(DefineConstants);COMPLEX_TYPES</DefineConstants>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Adds better JSON support to components from Thinktecture.Runtime.Extensions when using System.Text.Json.</Description>
<PackageTags>common;json</PackageTags>
<PackageTags>smart-enum;value-object;discriminated-union;json</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Adds MessagePack formatter for components from Thinktecture.Runtime.Extensions.</Description>
<PackageTags>common;MessagePack</PackageTags>
<PackageTags>smart-enum;value-object;discriminated-union;MessagePack</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Adds better JSON support to components from Thinktecture.Runtime.Extensions when using Newtonsoft.Json.</Description>
<PackageTags>common;json</PackageTags>
<PackageTags>smart-enum;value-object;discriminated-union;json</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>Source generators for Thinktecture.Runtime.Extensions.</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageTags>sourcegenerator</PackageTags>
<PackageTags>smart-enum;value-object;discriminated-union;sourcegenerator</PackageTags>
<NoWarn>$(NoWarn);CS1591;RS2008;NU5128</NoWarn>
<IncludeBuildOutput>false</IncludeBuildOutput>
<IncludeSymbols>false</IncludeSymbols>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>Provides an easy way to implement Smart Enums and Value Objects.</Description>
<PackageTags>smart-enum;value-object;</PackageTags>
<Description>Provides an easy way to implement Smart Enums, Value Objects and Discriminated Unions.</Description>
<PackageTags>smart-enum;value-object;discriminated-union;</PackageTags>
<TargetFramework></TargetFramework>
<TargetFrameworks>net7.0;net9.0;</TargetFrameworks>
</PropertyGroup>
Expand Down

0 comments on commit 4e4070d

Please sign in to comment.