chore: update workflow, project properties, and source link package.

This commit is contained in:
Stevan Freeborn
2026-03-30 16:19:16 -05:00
parent ef08ca729b
commit b695cf0aef
3 changed files with 21 additions and 6 deletions
+4
View File
@@ -15,6 +15,10 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Install PowerShell
uses: PSModule/install-powershell@v1
with:
Version: 7.6.0
- name: Determine version
id: version
run: pwsh -File scripts/determine-version.ps1 -Branch main | tee -a $env:GITHUB_OUTPUT
+5 -1
View File
@@ -3,6 +3,10 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Microsoft.SourceLink.Gitea" Version="10.0.201">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageVersion>
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="10.0.201" />
</ItemGroup>
</Project>
</Project>
@@ -8,22 +8,29 @@
<PropertyGroup>
<PackageId>StevanFreeborn.Results</PackageId>
<Version>0.0.0</Version>
<Authors>StevanFreeborn</Authors>
<Authors>Stevan Freeborn</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>
<PackageProjectUrl>https://gitea.freeborn.cloud/Stevan/stevanfreeborn.results</ProjectPackageUrl>
<RepositoryUrl>https://gitea.freeborn.cloud/Stevan/stevanfreeborn.results</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<DebugType>embedded</DebugType>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
</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>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.Gitea">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>