-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSymmetricKeyEncryption.csproj
More file actions
36 lines (32 loc) · 1.21 KB
/
SymmetricKeyEncryption.csproj
File metadata and controls
36 lines (32 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Reference Include="AESLib">
<HintPath>..\AESLib\bin\Debug\net8.0\AESLib.dll</HintPath>
</Reference>
<Reference Include="BouncyCastleAESLib">
<HintPath>..\BouncyCastleAESLib\bin\Debug\net8.0\BouncyCastleAESLib.dll</HintPath>
</Reference>
<Reference Include="BouncyCastleDESLib">
<HintPath>..\BouncyCastleDESLib\bin\Debug\net8.0\BouncyCastleDESLib.dll</HintPath>
</Reference>
<Reference Include="BouncyCastleTDESLib">
<HintPath>..\BouncyCastleTDESLib\bin\Debug\net8.0\BouncyCastleTDESLib.dll</HintPath>
</Reference>
<Reference Include="DESLib">
<HintPath>..\DESLib\bin\Debug\net8.0\DESLib.dll</HintPath>
</Reference>
<Reference Include="TDESLib">
<HintPath>..\TDESLib\bin\Debug\net8.0\TDESLib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.0" />
</ItemGroup>
</Project>