Skip to content

Commit b0c2fc1

Browse files
committed
fix readme
1 parent e1852a3 commit b0c2fc1

File tree

6 files changed

+31
-4
lines changed

6 files changed

+31
-4
lines changed

ValueOf.Extensions.Dapper/ValueOf.Extensions.Dapper.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<LangVersion>8</LangVersion>
6+
<Authors>Yuan Jian</Authors>
7+
<Copyright>Yuan Jian</Copyright>
8+
<Title>Extra goodies for ValueOf, including serialization for System.Text.Json, Newtonsoft.json</Title>
9+
<PackageVersion>1.0.0</PackageVersion>
10+
<Nullable>enable</Nullable>
11+
<PackageProjectUrl>https://github.com/foresightyj/ValueOf.Extensions</PackageProjectUrl>
12+
<PackageLicenseUrl>https://github.com/foresightyj/ValueOf.Extensions/blob/master/LICENSE</PackageLicenseUrl>
13+
<PackageTags>ValueOf, Value Object, ValueObject, DDD, Primitive Obsession, System.Text.Json, Dapper, EF.Core</PackageTags>
14+
<PackageReadmeFile>README.md</PackageReadmeFile>
615
</PropertyGroup>
716

817
<ItemGroup>

ValueOf.Extensions.EFCore/ValueOf.Extensions.EFCore.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5+
<Authors>Yuan Jian</Authors>
6+
<Copyright>Yuan Jian</Copyright>
7+
<Title>Extra goodies for ValueOf, including serialization for System.Text.Json, Newtonsoft.json</Title>
8+
<PackageVersion>1.0.0</PackageVersion>
9+
<Nullable>enable</Nullable>
10+
<PackageProjectUrl>https://github.com/foresightyj/ValueOf.Extensions</PackageProjectUrl>
11+
<PackageLicenseUrl>https://github.com/foresightyj/ValueOf.Extensions/blob/master/LICENSE</PackageLicenseUrl>
12+
<PackageTags>ValueOf, Value Object, ValueObject, DDD, Primitive Obsession, System.Text.Json, Dapper, EF.Core</PackageTags>
13+
<PackageReadmeFile>README.md</PackageReadmeFile>
514
</PropertyGroup>
615

716
<ItemGroup>

ValueOf.Extensions.NewtonsoftJson/ValueOf.Extensions.NewtonsoftJson.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5+
<Authors>Yuan Jian</Authors>
6+
<Copyright>Yuan Jian</Copyright>
7+
<Title>Extra goodies for ValueOf, including serialization for System.Text.Json, Newtonsoft.json</Title>
8+
<PackageVersion>1.0.0</PackageVersion>
9+
<PackageProjectUrl>https://github.com/foresightyj/ValueOf.Extensions</PackageProjectUrl>
10+
<PackageLicenseUrl>https://github.com/foresightyj/ValueOf.Extensions/blob/master/LICENSE</PackageLicenseUrl>
11+
<PackageTags>ValueOf, Value Object, ValueObject, DDD, Primitive Obsession, System.Text.Json, Dapper, EF.Core</PackageTags>
12+
<PackageReadmeFile>README.md</PackageReadmeFile>
513
</PropertyGroup>
614

715
<ItemGroup>

ValueOf.Extensions.ParsableGenerator/ValueOf.Extensions.ParsableGenerator.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
<IsPackable>false</IsPackable>
66
<Nullable>enable</Nullable>
77
<LangVersion>latest</LangVersion>
8-
98
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
109
<IsRoslynComponent>true</IsRoslynComponent>
11-
10+
<PackageReadmeFile>README.md</PackageReadmeFile>
1211
<RootNamespace>ValueOf.Extensions.ParsableGenerator</RootNamespace>
1312
<PackageId>ValueOf.Extensions.ParsableGenerator</PackageId>
1413
</PropertyGroup>

ValueOf.Extensions.SwashbuckleSwagger/ValueOf.Extensions.SwashbuckleSwagger.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<PackageLicenseUrl>https://github.com/foresightyj/ValueOf.Extensions/blob/master/LICENSE</PackageLicenseUrl>
1414
<PackageTags>ValueOf, Value Object, ValueObject, DDD, Primitive Obsession, System.Text.Json, Swagger</PackageTags>
1515
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
16+
<PackageReadmeFile>README.md</PackageReadmeFile>
1617
<PlatformTarget>AnyCPU</PlatformTarget>
1718
</PropertyGroup>
1819
<ItemGroup>

ValueOf.Extensions/ValueOf.Extensions.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
55
<PackageId>ValueOf.Extensions</PackageId>
6+
<LangVersion>8</LangVersion>
67
<Authors>Yuan Jian</Authors>
78
<Copyright>Yuan Jian</Copyright>
89
<Title>Extra goodies for ValueOf, including serialization for System.Text.Json, Newtonsoft.json</Title>
910
<PackageVersion>1.0.0</PackageVersion>
10-
<LangVersion>8</LangVersion>
1111
<Nullable>enable</Nullable>
1212
<PackageProjectUrl>https://github.com/foresightyj/ValueOf.Extensions</PackageProjectUrl>
1313
<PackageLicenseUrl>https://github.com/foresightyj/ValueOf.Extensions/blob/master/LICENSE</PackageLicenseUrl>
14-
<PackageTags>ValueOf, Value Object, ValueObject, DDD, Primitive Obsession, System.Text.Json</PackageTags>
14+
<PackageTags>ValueOf, Value Object, ValueObject, DDD, Primitive Obsession, System.Text.Json, Dapper, EF.Core</PackageTags>
15+
<PackageReadmeFile>README.md</PackageReadmeFile>
1516
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1617
<PlatformTarget>AnyCPU</PlatformTarget>
1718
</PropertyGroup>

0 commit comments

Comments
 (0)