Skip to content

Commit 50981c3

Browse files
bumping SHC version (#209)
* bumping SHC version * chore: using release version * chore: update publish pipeline for release --------- Co-authored-by: Michael Cuomo <mcuomo@specterops.io>
1 parent b2cecec commit 50981c3

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Build
3737
run: |
3838
VERSION=${{ github.ref_name }}
39-
dotnet build -c ${{ matrix.release.type }} -p:Version=${VERSION:1} -p:CommonLibSource=Stable
39+
dotnet build -c ${{ matrix.release.type }} -p:Version=${VERSION:1} -p:CommonLibSource=Release
4040
4141
- name: Zip
4242
run: 7z a -tzip -mx9 SharpHound_${{ github.ref_name }}${{ matrix.release.suffix }}_windows_x86.zip $PWD/bin/${{ matrix.release.type }}/net472/*

Sharphound.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
<PropertyGroup>
1818
<CommonLibsStableVersion>4.6.0</CommonLibsStableVersion>
19+
<CommonLibsReleaseVersion>4.6.1-dev.202604031715</CommonLibsReleaseVersion>
1920
<CommonLibPath>..\SharpHoundCommon\src\CommonLib\bin\$(Configuration)\net472\SharpHoundCommonLib.dll</CommonLibPath>
2021
<RPCPath>..\SharpHoundCommon\src\SharpHoundRPC\bin\$(Configuration)\net472\SharpHoundRPC.dll</RPCPath>
2122

@@ -34,6 +35,7 @@
3435

3536
<!-- Determine the package version -->
3637
<_CommonLibsVersion Condition="'$(CommonSource.ToLower())' == 'stable'">$(CommonLibsStableVersion)</_CommonLibsVersion>
38+
<_CommonLibsVersion Condition="'$(CommonSource.ToLower())' == 'release'">$(CommonLibsReleaseVersion)</_CommonLibsVersion>
3739
<_CommonLibsVersion Condition="'$(_CommonLibsVersion)' == ''">$(CommonLibsDevVersion)</_CommonLibsVersion>
3840
</PropertyGroup>
3941

0 commit comments

Comments
 (0)