Skip to content

Commit

Permalink
fix: use HearthMirror as dll again
Browse files Browse the repository at this point in the history
  • Loading branch information
azeier committed Sep 28, 2023
1 parent 80f4216 commit 22bb2ec
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ Resources/Generated/
Resources/Tiles/
/lib/HSReplay.dll
/lib/HearthMirror.exe
/lib/HearthMirror.dll
/lib/HearthDb.dll
/lib/BobsBuddy.dll
/lib/Newtonsoft.Json.dll
Expand Down
2 changes: 1 addition & 1 deletion HDTTests/HDTTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<HintPath>..\lib\HearthDb.dll</HintPath>
</Reference>
<Reference Include="HearthMirror">
<HintPath>..\lib\HearthMirror.exe</HintPath>
<HintPath>..\lib\HearthMirror.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion HearthWatcher.Test/HearthWatcher.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</ItemGroup>
<ItemGroup>
<Reference Include="HearthMirror">
<HintPath>..\lib\HearthMirror.exe</HintPath>
<HintPath>..\lib\HearthMirror.dll</HintPath>
</Reference>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion HearthWatcher/HearthWatcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<HintPath>..\lib\HearthDb.dll</HintPath>
</Reference>
<Reference Include="HearthMirror">
<HintPath>..\lib\HearthMirror.exe</HintPath>
<HintPath>..\lib\HearthMirror.dll</HintPath>
</Reference>
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
Expand Down
2 changes: 1 addition & 1 deletion Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<HintPath>..\lib\HearthDb.dll</HintPath>
</Reference>
<Reference Include="HearthMirror">
<HintPath>..\lib\HearthMirror.exe</HintPath>
<HintPath>..\lib\HearthMirror.dll</HintPath>
</Reference>
<Reference Include="HSReplay">
<HintPath>..\lib\HSReplay.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion ResourceGenerator/ResourceGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<HintPath>..\lib\HearthDb.dll</HintPath>
</Reference>
<Reference Include="HearthMirror">
<HintPath>..\lib\HearthMirror.exe</HintPath>
<HintPath>..\lib\HearthMirror.dll</HintPath>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="System.Xaml" />
Expand Down
2 changes: 1 addition & 1 deletion build-scripts/package.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if (!(Test-Path "$cert")) {

# Sign and zip up portable build
if (!$dev) {
& $signtool sign /tr "http://timestamp.digicert.com" /a /f $cert /p $Env:CERT_PASSWORD "$hdtReleaseDir\HDTUpdate.exe" "$hdtReleaseDir\HDTUninstaller.exe" "$hdtReleaseDir\Hearthstone Deck Tracker.exe" "$hdtReleaseDir\HearthMirror.exe" | Out-Default
& $signtool sign /tr "http://timestamp.digicert.com" /a /f $cert /p $Env:CERT_PASSWORD "$hdtReleaseDir\HDTUpdate.exe" "$hdtReleaseDir\HDTUninstaller.exe" "$hdtReleaseDir\Hearthstone Deck Tracker.exe" | Out-Default
Set-Location $buildDir
7z a -r -mx9 "$output\Hearthstone.Deck.Tracker-v$packageVersion.zip" "Hearthstone Deck Tracker"
}
Expand Down
2 changes: 1 addition & 1 deletion build-scripts/release_post_build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ xcopy /Y "..\..\..\..\HDTUninstaller\bin\x86\Release\HDTUninstaller.exe" "..\Hea
xcopy /Y "HearthstoneDeckTracker.pdb" "..\Hearthstone Deck Tracker"
xcopy /Y "HearthDb.pdb" "..\Hearthstone Deck Tracker"
xcopy /Y "HearthMirror.pdb" "..\Hearthstone Deck Tracker"
xcopy /Y "HearthMirror.exe" "..\Hearthstone Deck Tracker"
xcopy /Y "HearthMirror.dll" "..\Hearthstone Deck Tracker"
xcopy /Y "HearthWatcher.pdb" "..\Hearthstone Deck Tracker"
xcopy /Y "HSReplay.pdb" "..\Hearthstone Deck Tracker"
2 changes: 1 addition & 1 deletion build-scripts/squirrel_post_build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ for /D %%a in (*-*) do (
xcopy /Y "HearthstoneDeckTracker.exe" "..\Squirrel-Clean"
xcopy /Y "HearthstoneDeckTracker.exe.config" "..\Squirrel-Clean"
xcopy /Y "*.dll" "..\Squirrel-Clean"
xcopy /Y "HearthMirror.exe" "..\Squirrel-Clean"
xcopy /Y "HearthMirror.dll" "..\Squirrel-Clean"
xcopy /Y "HearthstoneDeckTracker.pdb" "..\Squirrel-Clean"
xcopy /Y "HearthWatcher.pdb" "..\Squirrel-Clean"

0 comments on commit 22bb2ec

Please sign in to comment.