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 uses: actions/setup-dotnet@v4
with: with:
dotnet-version: 10.0.x dotnet-version: 10.0.x
- name: Install PowerShell
uses: PSModule/install-powershell@v1
with:
Version: 7.6.0
- name: Determine version - name: Determine version
id: version id: version
run: pwsh -File scripts/determine-version.ps1 -Branch main | tee -a $env:GITHUB_OUTPUT 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> <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <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" /> <PackageVersion Include="Microsoft.SourceLink.GitHub" Version="10.0.201" />
</ItemGroup> </ItemGroup>
</Project> </Project>
@@ -8,22 +8,29 @@
<PropertyGroup> <PropertyGroup>
<PackageId>StevanFreeborn.Results</PackageId> <PackageId>StevanFreeborn.Results</PackageId>
<Version>0.0.0</Version> <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> <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> <PackageTags>result;railway;functional;error-handling;discriminated-union</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <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> <RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl> <PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources> <EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols> <IncludeSymbols>true</IncludeSymbols>
<DebugType>embedded</DebugType>
<SymbolPackageFormat>snupkg</SymbolPackageFormat> <SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="..\..\README.md" Link="README.md" /> <None Include="..\..\README.md" Link="README.md" />
<None Include="..\..\LICENSE.md" Link="LICENSE.md" /> <None Include="..\..\LICENSE.md" Link="LICENSE.md" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.Gitea">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project> </Project>