67 lines
3.4 KiB
XML
67 lines
3.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
|
|
|
<!-- Enable XML documentation -->
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
|
|
<!-- NuGet package metadata -->
|
|
<PackageId>MaksIT.Core</PackageId>
|
|
<Version>1.6.8</Version>
|
|
<Authors>Maksym Sadovnychyy</Authors>
|
|
<Company>MAKS-IT</Company>
|
|
<Product>MaksIT.Core</Product>
|
|
<Copyright>Copyright © Maksym Sadovnychyy (MAKS-IT)</Copyright>
|
|
<Description>A comprehensive .NET library providing utilities for logging (file/JSON with folder organization), security (JWT, JWK, JWS, TOTP, AES-GCM, password hashing), extensions (string, object, LINQ expressions, DateTime), saga orchestration, COMB GUIDs, Web API pagination, and more.</Description>
|
|
<PackageTags>dotnet;extensions;logging;file-logger;jwt;jwk;jws;totp;2fa;aes-gcm;password-hasher;saga;comb-guid;pagination;crc32;base32;enumeration</PackageTags>
|
|
|
|
<PackageProjectUrl>https://github.com/MAKS-IT-COM/maksit-core</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/MAKS-IT-COM/maksit-core</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
|
|
<PackageReleaseNotes>See https://github.com/MAKS-IT-COM/maksit-core/releases</PackageReleaseNotes>
|
|
|
|
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
|
|
|
|
<!-- Source Link for debugging -->
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
<!-- Deterministic builds for reproducibility -->
|
|
<Deterministic>true</Deterministic>
|
|
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="10.0.9" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.11" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.9" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.9" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.9" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.9" />
|
|
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.19.1" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.19.1" />
|
|
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.7.2" />
|
|
<PackageReference Include="System.Threading.RateLimiting" Version="10.0.9" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="\" Link="LICENSE.md" />
|
|
<None Include="..\..\README.md" Pack="true" PackagePath="\" Link="README.md" />
|
|
<None Include="..\..\CHANGELOG.md" Pack="true" PackagePath="\" Link="CHANGELOG.md" />
|
|
|
|
<None Include="..\..\assets\badges\**\*" Link="assets\badges\%(RecursiveDir)%(Filename)%(Extension)">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|