-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathE4A.PostGuard.csproj
More file actions
40 lines (34 loc) · 2.02 KB
/
Copy pathE4A.PostGuard.csproj
File metadata and controls
40 lines (34 loc) · 2.02 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>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>E4A.PostGuard</RootNamespace>
<AssemblyName>E4A.PostGuard</AssemblyName>
<!-- NuGet package metadata -->
<PackageId>E4A.PostGuard</PackageId>
<Version>0.5.1</Version>
<Authors>Encryption 4 All</Authors>
<Description>PostGuard .NET SDK — identity-based encryption for secure file sharing</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/encryption4all/postguard-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/encryption4all/postguard-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>ibe;encryption;postguard;identity-based-encryption</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="E4A.PostGuard.Tests"/>
</ItemGroup>
<!-- Native pg-ffi libraries: pack into runtimes/ and copy to output at runtime -->
<ItemGroup>
<None Include="runtimes/linux-x64/native/**" Pack="true" PackagePath="runtimes/linux-x64/native" Link="runtimes/linux-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/linux-arm64/native/**" Pack="true" PackagePath="runtimes/linux-arm64/native" Link="runtimes/linux-arm64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-arm64/native/**" Pack="true" PackagePath="runtimes/osx-arm64/native" Link="runtimes/osx-arm64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-x64/native/**" Pack="true" PackagePath="runtimes/osx-x64/native" Link="runtimes/osx-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/win-x64/native/**" Pack="true" PackagePath="runtimes/win-x64/native" Link="runtimes/win-x64/native/%(Filename)%(Extension)"/>
</ItemGroup>
</Project>