Skip to content

Commit

Permalink
Minor naming changes, setting up build and artifact upload for CliTimer
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankvdStam committed Mar 3, 2024
1 parent 30117b1 commit e4d9c4a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
run: |
New-Item -Path .\.sonar\scanner -ItemType Directory
dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
Expand All @@ -58,4 +59,15 @@ jobs:
dotnet test -p:CollectCoverage=true -p:CoverletOutputFormat=opencover
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
- name: Build CliTimer
shell: powershell
run: dotnet build src\CliTimer\CliTimer.csproj --release

- name: Publish CliTimer
- uses: actions/upload-artifact@v4
with:
name: CliTimer
path: |
src\CliTimer\bin\release\net481\CliTimer.exe
src\CliTimer\bin\release\net481\CliTimer.exe.config
src\CliTimer\bin\release\net481\SoulMemory.dll
4 changes: 2 additions & 2 deletions SoulSplitter.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32014.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "cli", "src\cli\cli.csproj", "{93CF6900-8F5C-4364-9EAF-8992B883361B}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cli", "src\Cli\Cli.csproj", "{93CF6900-8F5C-4364-9EAF-8992B883361B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SoulMemory", "src\SoulMemory\SoulMemory.csproj", "{03480F4F-F423-4144-90C6-CBDA68269374}"
EndProject
Expand Down Expand Up @@ -48,7 +48,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SoulMemory.Tests", "tests\S
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SoulSplitter.Tests", "tests\SoulSplitter.Tests\SoulSplitter.Tests.csproj", "{13D6FF7F-E774-424C-940C-C76FF98D8916}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "clitimer", "src\clitimer\clitimer.csproj", "{F7482938-4DEE-4BEB-BBA7-D9AE696404F3}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CliTimer", "src\CliTimer\CliTimer.csproj", "{F7482938-4DEE-4BEB-BBA7-D9AE696404F3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion src/cli/cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
<UseWPF>true</UseWPF>
<Title>cli</Title>
<Title>Cli</Title>
<PackageProjectUrl>https://github.com/FrankvdStam/SoulSplitter</PackageProjectUrl>
<RepositoryUrl>https://github.com/FrankvdStam/SoulSplitter</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down
2 changes: 1 addition & 1 deletion src/clitimer/clitimer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
<UseWPF>false</UseWPF>
<Title>clitimer</Title>
<Title>CliTimer</Title>
<PackageProjectUrl>https://github.com/FrankvdStam/SoulSplitter</PackageProjectUrl>
<RepositoryUrl>https://github.com/FrankvdStam/SoulSplitter</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit e4d9c4a

Please sign in to comment.