Skip to content

Commit 835f16d

Browse files
committed
fix: capitalization in Ghosts.Client.Universal.csproj
1 parent 77f3161 commit 835f16d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/create_client_universal.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ jobs:
1313
- name: Setup .NET
1414
uses: actions/setup-dotnet@v4
1515
with:
16-
dotnet-version: '8.0.x' # Use 'x' to automatically get the latest patch version
16+
dotnet-version: '9.0.x' # Use 'x' to automatically get the latest patch version
1717

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

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

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

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

3030
- name: Zip build output
3131
run: zip -r ghosts-client-universal-v8.0.0.zip build_output/

src/Ghosts.Client.Universal/Ghosts.Client.Universal.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
<ItemGroup>
2626
<PackageReference Include="CommandLineParser" Version="2.9.1" />
27-
<PackageReference Include="HtmlAgilityPack" Version="1.12.1" />
28-
<PackageReference Include="NLog" Version="5.5.0" />
27+
<PackageReference Include="HtmlAgilityPack" Version="1.12.4" />
28+
<PackageReference Include="NLog" Version="6.0.5" />
2929
<PackageReference Include="FileHelpers" Version="3.5.2" />
3030
<PackageReference Include="Selenium.Firefox.WebDriver" Version="0.27.0" />
3131
<PackageReference Include="Selenium.WebDriver" Version="4.33.0" />
@@ -36,7 +36,7 @@
3636
</ItemGroup>
3737

3838
<ItemGroup>
39-
<ProjectReference Include="..\Ghosts.Domain\ghosts.domain.csproj" />
39+
<ProjectReference Include="..\Ghosts.Domain\Ghosts.Domain.csproj" />
4040
</ItemGroup>
4141

4242
<ItemGroup>

0 commit comments

Comments
 (0)