Skip to content

Commit f8dbba7

Browse files
authored
Merge pull request #23 from selfmadecode/dev_raphael_aes
feat: update csproj file
2 parents 48c78a2 + 23d5288 commit f8dbba7

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

SafeCrypt.csproj

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

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5+
<PackageId>Nextgen.Org.$(AssemblyName)</PackageId>
6+
<Title>SafeCrypt - Simple Encryption Library for C#</Title>
7+
<Authors>selfmade</Authors>
8+
<Company>NextGen.$(Authors)</Company>
9+
<Description>This C# library provides methods for encrypting and decrypting data using the Advanced Encryption Standard (AES) algorithm. It offers a simple interface for users to encrypt and decrypt data with ease.</Description>
10+
<Copyright>Nextgen</Copyright>
11+
<PackageProjectUrl>https://github.com/selfmadecode/SafeCrypt</PackageProjectUrl>
12+
<RepositoryUrl>https://github.com/selfmadecode/SafeCrypt</RepositoryUrl>
13+
<PackageTags>encryption;aes;cryptography;base64;aes</PackageTags>
14+
<PackageIcon>safecrypticon.jpg</PackageIcon>
515
</PropertyGroup>
616

17+
<ItemGroup>
18+
<None Include="..\..\..\Downloads\safecrypticon.jpg">
19+
<Pack>True</Pack>
20+
<PackagePath>\</PackagePath>
21+
</None>
22+
</ItemGroup>
23+
724
<ItemGroup>
825
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
926
</ItemGroup>

0 commit comments

Comments
 (0)