2024-12-20 01:50:06 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-12-22 13:03:54 -05:00
|
|
|
|
<IsAotCompatible>true</IsAotCompatible>
|
2024-12-20 01:50:06 -05:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2024-12-20 01:57:54 -05:00
|
|
|
|
<Authors>Mathias Beaulieu-Duncan</Authors>
|
2024-12-22 11:58:30 -05:00
|
|
|
|
<Company>Open Harbor</Company>
|
|
|
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
2024-12-22 13:44:10 -05:00
|
|
|
|
<RepositoryUrl>https://git.openharbor.io/Open-Harbor/dotnet-jwt-token-manager</RepositoryUrl>
|
2024-12-21 02:05:30 -05:00
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2024-12-22 13:38:47 -05:00
|
|
|
|
|
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2024-12-22 12:10:29 -05:00
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<IncludeSource>true</IncludeSource>
|
2024-12-22 13:38:47 -05:00
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
2024-12-20 01:50:06 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-12-22 11:58:30 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="..\icon.png" Pack="true" PackagePath="" CopyToOutputDirectory="Always" />
|
|
|
|
|
<None Include="..\README.md" Pack="true" PackagePath="" CopyToOutputDirectory="Always" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-12-20 01:50:06 -05:00
|
|
|
|
</Project>
|