30 lines
1.4 KiB
XML
30 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<PropertyGroup>
|
||
|
|
<TargetFrameworks>netstandard2.1;net10.0</TargetFrameworks>
|
||
|
|
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsAotCompatible>
|
||
|
|
<VerifyReferenceAotCompatibility>true</VerifyReferenceAotCompatibility>
|
||
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||
|
|
</PropertyGroup>
|
||
|
|
<PropertyGroup>
|
||
|
|
<PackageId>StevanFreeborn.Results</PackageId>
|
||
|
|
<Version>0.0.0</Version>
|
||
|
|
<Authors>StevanFreeborn</Authors>
|
||
|
|
<Description>A minimalistic, AOT-compatible Result type library for railway-oriented programming and functional error handling.</Description>
|
||
|
|
<PackageTags>result;railway;functional;error-handling;discriminated-union</PackageTags>
|
||
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||
|
|
<RepositoryUrl>https://github.com/StevanFreeborn/stevanfreeborn.results</RepositoryUrl>
|
||
|
|
<RepositoryType>git</RepositoryType>
|
||
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
||
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
||
|
|
<IncludeSymbols>true</IncludeSymbols>
|
||
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||
|
|
</PropertyGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
|
||
|
|
</ItemGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<None Include="..\..\README.md" Link="README.md" />
|
||
|
|
<None Include="..\..\LICENSE.md" Link="LICENSE.md" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|