Skip to content

Commit cafe181

Browse files
committed
build.yml
1 parent 8746780 commit cafe181

File tree

2 files changed

+23
-25
lines changed

2 files changed

+23
-25
lines changed

Directory.Build.props

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
<Project>
2-
<ItemGroup>
3-
<None Include="README.md" Pack="true" PackagePath="" />
4-
</ItemGroup>
2+
<PropertyGroup>
3+
<Authors>Giovanni Costagliola</Authors>
4+
<Company>Bogoware</Company>
5+
<Product>Moneta</Product>
6+
<Copyright>Copyright © Giovanni Costagliola 2024</Copyright>
7+
<NeutralLanguage>en-US</NeutralLanguage>
8+
<Title>Bogoware Moneta</Title>
9+
<Description>Library for secure monetary calculations.</Description>
10+
<Summary>Moneta is a library designed for secure monetary calculations. It offers a robust API that ensures accuracy and consistency in financial operations while preventing unnoticed rounding errors.</Summary>
11+
<PackageTags>Financial Money Currency Banking Finance Accounting</PackageTags>
12+
<PackageReadmeFile>README.md</PackageReadmeFile>
13+
<!-- <PackageIcon>packageIcon.png</PackageIcon> -->
14+
<!-- <PackageIconUrl></PackageIconUrl> -->
15+
<!-- <PackageProjectUrl>https://mr.bogoware.io/projects/2023/monads</PackageProjectUrl> -->
16+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
17+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
18+
<RepositoryUrl>https://github.com/bogoware/moneta</RepositoryUrl>
19+
<RepositoryType>github</RepositoryType>
20+
</PropertyGroup>
521
</Project>

src/Moneta/Moneta.csproj

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,10 @@
66
<Nullable>enable</Nullable>
77
<AssemblyName>Bogoware.Moneta</AssemblyName>
88
<RootNamespace>Bogoware.Moneta</RootNamespace>
9-
</PropertyGroup>
10-
11-
<PropertyGroup>
129
<PackageId>Bogoware.Moneta</PackageId>
13-
<!-- <Version>0.0.1</Version> -->
14-
<!-- <GeneratePackageOnBuild>true</GeneratePackageOnBuild> -->
15-
<Authors>Giovanni Costagliola</Authors>
16-
<Company>Bogoware</Company>
17-
<Product>Moneta</Product>
18-
<Copyright>Copyright © Giovanni Costagliola 2024</Copyright>
19-
<NeutralLanguage>en-US</NeutralLanguage>
20-
<Title>Bogoware Moneta</Title>
21-
<Description>Library for secure monetary calculations.</Description>
22-
<Summary>Moneta is a library designed for secure monetary calculations. It offers a robust API that ensures accuracy and consistency in financial operations while preventing unnoticed rounding errors. </Summary>
23-
<PackageTags>Financial Money Currency Banking Finance Accounting</PackageTags>
24-
<PackageReadmeFile>README.md</PackageReadmeFile>
25-
<!-- <PackageIcon>packageIcon.png</PackageIcon> -->
26-
<!-- <PackageIconUrl></PackageIconUrl> -->
27-
<!-- <PackageProjectUrl>https://mr.bogoware.io/projects/2023/monads</PackageProjectUrl> -->
28-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
29-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
30-
<RepositoryUrl>https://github.com/bogoware/moneta</RepositoryUrl>
31-
<RepositoryType>github</RepositoryType>
3210
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<None Include="../../README.md" Pack="true" PackagePath="" />
14+
</ItemGroup>
3315
</Project>

0 commit comments

Comments
 (0)