<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <IsAotCompatible>true</IsAotCompatible> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <Authors>Mathias Beaulieu-Duncan</Authors> <Company>Open Harbor</Company> <PackageIcon>icon.png</PackageIcon> <PackageReadmeFile>README.md</PackageReadmeFile> <RepositoryUrl>https://git.openharbor.io/Open-Harbor/dotnet-jwt-token-manager</RepositoryUrl> <RepositoryType>git</RepositoryType> <PublishRepositoryUrl>true</PublishRepositoryUrl> <PackageLicenseExpression>MIT</PackageLicenseExpression> <DebugType>portable</DebugType> <DebugSymbols>true</DebugSymbols> <IncludeSymbols>true</IncludeSymbols> <IncludeSource>true</IncludeSource> <SymbolPackageFormat>snupkg</SymbolPackageFormat> </PropertyGroup> <ItemGroup> <None Include="..\icon.png" Pack="true" PackagePath="" CopyToOutputDirectory="Always" /> <None Include="..\README.md" Pack="true" PackagePath="" CopyToOutputDirectory="Always" /> </ItemGroup> </Project>