Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/create_client_universal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x' # Use 'x' to automatically get the latest patch version
dotnet-version: '9.0.x' # Use 'x' to automatically get the latest patch version

- name: Restore dependencies for Ghosts.Domain
run: dotnet restore src/Ghosts.Domain/ghosts.domain.csproj
run: dotnet restore src/Ghosts.Domain/Ghosts.Domain.csproj

- name: Restore dependencies for ghosts.client.universal
run: dotnet restore src/ghosts.client.universal/ghosts.client.universal.csproj
- name: Restore dependencies for Ghosts.Client.Universal
run: dotnet restore src/Ghosts.Client.Universal/Ghosts.Client.Universal.csproj

- name: Build Ghosts.Domain
run: dotnet build --no-restore src/Ghosts.Domain/ghosts.domain.csproj
run: dotnet build --no-restore src/Ghosts.Domain/Ghosts.Domain.csproj

- name: Build ghosts.client.universal
run: dotnet build --no-restore src/ghosts.client.universal/ghosts.client.universal.csproj --configuration Release -o build_output/
- name: Build Ghosts.Client.Universal
run: dotnet build --no-restore src/Ghosts.Client.Universal/Ghosts.Client.Universal.csproj --configuration Release -o build_output/

- name: Zip build output
run: zip -r ghosts-client-universal-v8.0.0.zip build_output/
Expand Down
6 changes: 3 additions & 3 deletions src/Ghosts.Client.Universal/Ghosts.Client.Universal.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="HtmlAgilityPack" Version="1.12.1" />
<PackageReference Include="NLog" Version="5.5.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.12.4" />
<PackageReference Include="NLog" Version="6.0.5" />
<PackageReference Include="FileHelpers" Version="3.5.2" />
<PackageReference Include="Selenium.Firefox.WebDriver" Version="0.27.0" />
<PackageReference Include="Selenium.WebDriver" Version="4.33.0" />
Expand All @@ -36,7 +36,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Ghosts.Domain\ghosts.domain.csproj" />
<ProjectReference Include="..\Ghosts.Domain\Ghosts.Domain.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down