Skip to content

Commit be4a84d

Browse files
committed
v2.0.0
1 parent 5a937ea commit be4a84d

4 files changed

Lines changed: 30 additions & 10 deletions

File tree

src/Danom.MinimalApi/src/Danom.MinimalApi.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<AssemblyName>Danom.MinimalApi</AssemblyName>
5-
<Version>2.0.0-beta4</Version>
5+
<Version>2.0.0</Version>
66

77
<!-- General info -->
88
<Description>ASP.NET Core Minimal API support for Danom.</Description>
@@ -26,6 +26,7 @@
2626
<PackageTags>aspnetcore;mvc;validation;danom;</PackageTags>
2727
<PackageProjectUrl>https://github.com/pimbrouwers/Danom</PackageProjectUrl>
2828
<PackageLicenseExpression>MIT</PackageLicenseExpression>
29+
<PackageIcon>icon.png</PackageIcon>
2930
<PackageReadmeFile>README.md</PackageReadmeFile>
3031
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
3132
<RepositoryType>git</RepositoryType>
@@ -38,15 +39,19 @@
3839
</PropertyGroup>
3940

4041
<ItemGroup>
41-
<None Include="./README.md" Pack="true" PackagePath="\" />
42+
<None Include="../../../assets/icon.png">
43+
<Pack>true</Pack>
44+
<PackagePath>$(PackageIconUrl)</PackagePath>
45+
</None>
46+
<None Include="../../../README.md" Pack="true" PackagePath="\" />
4247
</ItemGroup>
4348

4449
<ItemGroup>
4550
<FrameworkReference Include="Microsoft.AspNetCore.App" />
4651
</ItemGroup>
4752

4853
<ItemGroup>
49-
<PackageReference Include="Danom" Version="2.0.0-beta5" />
54+
<PackageReference Include="Danom" Version="2.*" />
5055
</ItemGroup>
5156

5257
</Project>

src/Danom.Mvc/src/Danom.Mvc.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<AssemblyName>Danom.Mvc</AssemblyName>
5-
<Version>2.0.0-beta4</Version>
5+
<Version>2.0.0</Version>
66

77
<!-- General info -->
88
<Description>ASP.NET Core MVC and Razor Pages support for Danom.</Description>
@@ -24,6 +24,7 @@
2424
<PackageTags>aspnetcore;mvc;validation;danom;</PackageTags>
2525
<PackageProjectUrl>https://github.com/pimbrouwers/Danom</PackageProjectUrl>
2626
<PackageLicenseExpression>MIT</PackageLicenseExpression>
27+
<PackageIcon>icon.png</PackageIcon>
2728
<PackageReadmeFile>README.md</PackageReadmeFile>
2829
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2930
<RepositoryType>git</RepositoryType>
@@ -36,15 +37,19 @@
3637
</PropertyGroup>
3738

3839
<ItemGroup>
39-
<None Include="./README.md" Pack="true" PackagePath="\" />
40+
<None Include="../../../assets/icon.png">
41+
<Pack>true</Pack>
42+
<PackagePath>$(PackageIconUrl)</PackagePath>
43+
</None>
44+
<None Include="../../../README.md" Pack="true" PackagePath="\" />
4045
</ItemGroup>
4146

4247
<ItemGroup>
4348
<FrameworkReference Include="Microsoft.AspNetCore.App" />
4449
</ItemGroup>
4550

4651
<ItemGroup>
47-
<PackageReference Include="Danom" Version="2.0.0-beta5" />
52+
<PackageReference Include="Danom" Version="2.*" />
4853
</ItemGroup>
4954

5055
</Project>

src/Danom.Validation/src/Danom.Validation.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<AssemblyName>Danom.Validation</AssemblyName>
5-
<Version>2.0.0-beta6</Version>
5+
<Version>2.0.0</Version>
66

77
<!-- General info -->
88
<Description>Validators and validation helpers for Danom.</Description>
@@ -23,6 +23,7 @@
2323
<PackageTags>validation;validation-result;danom;</PackageTags>
2424
<PackageProjectUrl>https://github.com/pimbrouwers/Danom</PackageProjectUrl>
2525
<PackageLicenseExpression>MIT</PackageLicenseExpression>
26+
<PackageIcon>icon.png</PackageIcon>
2627
<PackageReadmeFile>README.md</PackageReadmeFile>
2728
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2829
<RepositoryType>git</RepositoryType>
@@ -35,10 +36,14 @@
3536
</PropertyGroup>
3637

3738
<ItemGroup>
38-
<None Include="../README.md" Pack="true" PackagePath="\" />
39+
<None Include="../../../assets/icon.png">
40+
<Pack>true</Pack>
41+
<PackagePath>$(PackageIconUrl)</PackagePath>
42+
</None>
43+
<None Include="../../../README.md" Pack="true" PackagePath="\" />
3944
</ItemGroup>
4045

4146
<ItemGroup>
42-
<PackageReference Include="Danom" Version="2.0.0-beta6" />
47+
<PackageReference Include="Danom" Version="2.*" />
4348
</ItemGroup>
4449
</Project>

src/Danom/src/Danom.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<AssemblyName>Danom</AssemblyName>
5-
<Version>2.0.0-beta6</Version>
5+
<Version>2.0.0</Version>
66

77
<!-- General info -->
88
<Description>Option and Result types for C# to simplify functional programming.</Description>
@@ -26,6 +26,7 @@
2626
<PackageTags>monads;error-handling;option-type;option;result;railway-oriented-programming;result-type</PackageTags>
2727
<PackageProjectUrl>https://github.com/pimbrouwers/Danom</PackageProjectUrl>
2828
<PackageLicenseExpression>MIT</PackageLicenseExpression>
29+
<PackageIcon>icon.png</PackageIcon>
2930
<PackageReadmeFile>README.md</PackageReadmeFile>
3031
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
3132
<RepositoryType>git</RepositoryType>
@@ -38,6 +39,10 @@
3839
</PropertyGroup>
3940

4041
<ItemGroup>
42+
<None Include="../../../assets/icon.png">
43+
<Pack>true</Pack>
44+
<PackagePath>$(PackageIconUrl)</PackagePath>
45+
</None>
4146
<None Include="../../../README.md" Pack="true" PackagePath="\" />
4247
</ItemGroup>
4348

0 commit comments

Comments
 (0)