Skip to content

Commit

Permalink
Merge pull request #745 from Blazam-App/v1-2-5
Browse files Browse the repository at this point in the history
V1 2 5
  • Loading branch information
jacobsen9026 authored Jan 11, 2025
2 parents 13513ee + b4d800f commit 71e3707
Show file tree
Hide file tree
Showing 23 changed files with 22,511 additions and 18,377 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/analyze-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,14 @@ jobs:
run: |
.\.sonar\scanner\dotnet-sonarscanner begin /k:"Blazam-App_BLAZAM" /o:"blazam-app" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
dotnet build
coverlet .\BLAZAM.Tests\bin\Debug\net8.0\BLAZAM.Tests.dll
--target "dotnet"
--targetargs "test --no-build"
-f=opencover
-o="coverage.xml"
coverlet .\BLAZAMCommon.Tests\bin\Debug\net8.0\BLAZAMCommon.Tests.dll
--target "dotnet"
--targetargs "test --no-build"
-f=opencover
-o="coverage.xml"
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
4 changes: 4 additions & 0 deletions BLAZAM.Tests/BLAZAM.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
Expand Down
2 changes: 1 addition & 1 deletion BLAZAM/BLAZAM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<ServerGarbageCollection>false</ServerGarbageCollection>
<AssemblyVersion>1.2.5</AssemblyVersion>
<Version>2025.01.11.1552</Version>
<Version>2025.01.11.1618</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<RootNamespace>BLAZAM</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion BLAZAM/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ private static void GetRunningWebServerConfiguration()

foreach (var address in addressFeature.Addresses)
{
ApplicationInfo.listeningAddresses.Append(address);
ApplicationInfo.listeningAddresses = ApplicationInfo.listeningAddresses.Append(address);
Loggers.SystemLogger.Debug("Listening on: " + address);
}
}
Expand Down
Loading

0 comments on commit 71e3707

Please sign in to comment.