-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAES-CTR-Netstandard.csproj
36 lines (31 loc) · 1.44 KB
/
AES-CTR-Netstandard.csproj
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>
<TargetFrameworks>net8.0</TargetFrameworks>
<PackageId>LibAES-CTR</PackageId>
<VersionPrefix>1.1.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<Authors>Kaarlo Räihä</Authors>
<Description>Managed C# .NET (.NET 8) library for AES-CTR encrypting and decrypting</Description>
<IncludeSource>true</IncludeSource>
<PackageProjectUrl>https://github.com/mcraiha/CSharp-AES-CTR-NetStandard</PackageProjectUrl>
<RepositoryUrl>https://github.com/mcraiha/CSharp-AES-CTR-NetStandard.git</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
<PackageReadmeFile>nuget-readme.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsTrimmable>true</IsTrimmable>
</PropertyGroup>
<ItemGroup>
<None Include="../nuget-readme.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>