2026-03-30 12:51:19 -05:00
|
|
|
<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>
|
2026-03-30 16:19:16 -05:00
|
|
|
<Authors>Stevan Freeborn</Authors>
|
2026-03-30 12:51:19 -05:00
|
|
|
<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>
|
2026-03-30 16:55:14 -05:00
|
|
|
<PackageProjectUrl>https://gitea.freeborn.cloud/Stevan/stevanfreeborn.results</PackageProjectUrl>
|
2026-03-30 16:19:16 -05:00
|
|
|
<RepositoryUrl>https://gitea.freeborn.cloud/Stevan/stevanfreeborn.results</RepositoryUrl>
|
2026-03-30 12:51:19 -05:00
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
2026-03-30 16:19:16 -05:00
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
|
|
|
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
|
2026-03-30 12:51:19 -05:00
|
|
|
</PropertyGroup>
|
2026-03-30 17:26:29 -05:00
|
|
|
<PropertyGroup Condition="'$(GITEA_ACTIONS)' == 'true'">
|
|
|
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
|
|
|
</PropertyGroup>
|
2026-03-30 12:51:19 -05:00
|
|
|
<ItemGroup>
|
2026-03-30 17:11:20 -05:00
|
|
|
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
|
|
|
|
|
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="\" />
|
2026-03-30 12:51:19 -05:00
|
|
|
</ItemGroup>
|
2026-03-30 16:19:16 -05:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.Gitea">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2026-03-30 12:51:19 -05:00
|
|
|
</Project>
|