-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecureStream.csproj
More file actions
40 lines (34 loc) · 1.57 KB
/
SecureStream.csproj
File metadata and controls
40 lines (34 loc) · 1.57 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
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>M9Studio.SecureStream</RootNamespace>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- NuGet package metadata -->
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>M9Studio.SecureStream</PackageId>
<Version>8.0.2.1</Version>
<Authors>mina987</Authors>
<Company>M9Studio</Company>
<Copyright>© 2025 M9Studio</Copyright>
<Description>Secure cryptographic tunnel abstraction with X25519 handshake and AES-GCM encryption. Lightweight alternative to TLS-like session protection.</Description>
<PackageTags>encryption;TLS;AES;X25519;secure;stream;networking</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/m9studio/SecureStream</PackageProjectUrl>
<RepositoryUrl>https://github.com/m9studio/SecureStream</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Initial release: secure encrypted tunnel with X25519 + AES-GCM. Supports pluggable transport adapter.</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Test\**" />
<EmbeddedResource Remove="Test\**" />
<None Remove="Test\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.1" />
</ItemGroup>
</Project>