online_security_project/client/client.csproj

14 lines
413 B
XML
Raw Normal View History

2024-12-01 15:09:56 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
2024-12-14 17:10:09 +00:00
<ProjectReference Include="..\lib\lib.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cryptography" Version="1.0.0"/>
2024-12-01 15:09:56 +00:00
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
2024-12-14 15:17:58 +00:00
<ImplicitUsings>disable</ImplicitUsings>
2024-12-01 15:09:56 +00:00
<Nullable>enable</Nullable>
</PropertyGroup>
2024-12-14 17:10:09 +00:00
</Project>