blob: 28b787ee659d5589ce7f53cf8ff87d593efc81d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<PackageProjectUrl>https://git.ivarlovlie.no/dotnet-helpers</PackageProjectUrl>
<PackageLicenseUrl>https://git.ivarlovlie.no/dotnet-helpers/tree/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://git.ivarlovlie.no/dotnet-helpers</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>3.0.0</PackageVersion>
<Title>IOL.Helpers</Title>
<Authors>Ivar Løvlie</Authors>
<Description>Common helpers for my dotnet projects.</Description>
<Copyright>Ivar Løvlie</Copyright>
<PackageReleaseNotes>
ToGuid throws on invalid Guids.
Use ToGuidOrDefault for old behaviour.
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="6.0.1"/>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0"/>
</ItemGroup>
</Project>
|