Skip to content

Commit 78882af

Browse files
chore(ci): bump dailydevops/pipelines from 0.14.68 to 0.14.79 (#677)
1 parent 7dc120a commit 78882af

File tree

28 files changed

+21
-126
lines changed

28 files changed

+21
-126
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
jobs:
2222
all:
2323
name: Build & Tests
24-
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@0.14.68
24+
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@0.14.79
2525
with:
2626
enableCleanUpDockerDocker: true
2727
enableSonarQube: true

Directory.Build.props

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,22 @@
11
<Project>
2-
32
<PropertyGroup Label="General settings for all projects">
43
<_ProjectTargetFrameworks>net8.0;net9.0</_ProjectTargetFrameworks>
54
<_TestTargetFrameworks>net8.0;net9.0</_TestTargetFrameworks>
6-
75
<LangVersion>preview</LangVersion>
86
</PropertyGroup>
9-
107
<PropertyGroup>
118
<!-- Workaround, until https://github.com/GitTools/GitVersion/pull/4206 is released -->
129
<GitVersionTargetFramework>net8.0</GitVersionTargetFramework>
1310
</PropertyGroup>
14-
1511
<PropertyGroup Label="Settings for non test projects">
1612
<Title>$(MSBuildProjectName)</Title>
1713
<RepositoryUrl>https://github.com/dailydevops/healthchecks.git</RepositoryUrl>
1814
<PackageProjectUrl>https://github.com/dailydevops/healthchecks</PackageProjectUrl>
1915
<PackageTags>healthcheck;healthchecks;health;diagnostics;</PackageTags>
2016
<PackageReleaseNotes>$(PackageProjectUrl)/releases/</PackageReleaseNotes>
21-
2217
<CopyrightYearStart>2023</CopyrightYearStart>
2318
</PropertyGroup>
24-
2519
<ItemGroup>
2620
<FrameworkReference Include="Microsoft.AspNetCore.App" />
2721
</ItemGroup>
28-
2922
</Project>

Directory.Build.targets

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
<Project>
2-
32
<ItemGroup Label="Test compability" Condition=" '$(IsTestableProject)' == 'false' ">
43
<InternalsVisibleTo Include="NetEvolve.HealthChecks.Abstractions.Tests.Architecture" />
54
<InternalsVisibleTo Include="NetEvolve.HealthChecks.Tests.Architecture" />
65
<InternalsVisibleTo Include="NetEvolve.HealthChecks.Tests.Integration" />
76
<InternalsVisibleTo Include="NetEvolve.HealthChecks.Tests.Unit" />
87
</ItemGroup>
9-
108
<PropertyGroup Label="Settings for test projects" Condition=" '$(IsTestableProject)' == 'true' ">
119
<NoWarn>$(NoWarn);CS8604;CA2007;</NoWarn>
1210
</PropertyGroup>
13-
1411
</Project>

Directory.Packages.props

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,22 @@
44
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
55
</PropertyGroup>
66
<ItemGroup>
7-
<GlobalPackageReference Include="CSharpier.MSBuild" Version="0.30.6" />
7+
<GlobalPackageReference Include="CSharpier.MSBuild" Version="1.0.1" />
88
<GlobalPackageReference Include="GitVersion.MsBuild" Version="6.2.0" />
99
<GlobalPackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" />
1010
<GlobalPackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0" />
1111
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
12-
<GlobalPackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.13.61" />
12+
<GlobalPackageReference
13+
Include="Microsoft.VisualStudio.Threading.Analyzers"
14+
Version="17.13.61"
15+
/>
1316
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.74" />
1417
<GlobalPackageReference Include="Roslynator.Analyzers" Version="4.13.1" />
15-
<GlobalPackageReference Include="SonarAnalyzer.CSharp" Version="10.6.0.109712" Condition=" '$(BuildingInsideVisualStudio)' == 'true' " />
18+
<GlobalPackageReference
19+
Include="SonarAnalyzer.CSharp"
20+
Version="10.6.0.109712"
21+
Condition=" '$(BuildingInsideVisualStudio)' == 'true' "
22+
/>
1623
</ItemGroup>
1724
<ItemGroup>
1825
<PackageVersion Include="Azure.Data.Tables" Version="12.10.0" />

nuget.config

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,13 @@
55
<config>
66
<!--<add key="defaultPushSource" value="https://contoso.com/packages/" />-->
77
</config>
8-
98
<!-- Define the package sources, nuget.org and contoso.com. -->
109
<!-- `clear` ensures no additional sources are inherited from another config file. -->
1110
<packageSources>
1211
<clear />
1312
<!-- `key` can be any identifier for your source. -->
1413
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
1514
</packageSources>
16-
1715
<!-- Define mappings by adding package patterns beneath the target source. -->
1816
<!-- Contoso.* packages and NuGet.Common will be restored from contoso.com, everything else from nuget.org. -->
1917
<packageSourceMapping>
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFrameworks>$(_ProjectTargetFrameworks)</TargetFrameworks>
5-
64
<Description>Contains abstract implementations for the `NetEvolve.HealthChecks`.</Description>
75
<PackageTags>$(PackageTags);abstractions;</PackageTags>
86
</PropertyGroup>
9-
107
<ItemGroup>
118
<PackageReference Include="NetEvolve.Arguments" />
129
<PackageReference Include="NetEvolve.Extensions.Tasks" />
1310
</ItemGroup>
14-
1511
</Project>
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFrameworks>$(_ProjectTargetFrameworks)</TargetFrameworks>
5-
64
<Description>Contains HealthChecks for Apache Kafka, based on the NuGet package `Confluent.Kafka`.</Description>
75
<PackageTags>$(PackageTags);kafka;</PackageTags>
86
</PropertyGroup>
9-
107
<ItemGroup>
118
<PackageReference Include="Confluent.Kafka" />
129
<PackageReference Include="NetEvolve.Extensions.Tasks" />
1310
</ItemGroup>
14-
1511
<ItemGroup>
1612
<ProjectReference Include="..\NetEvolve.HealthChecks.Abstractions\NetEvolve.HealthChecks.Abstractions.csproj" />
1713
</ItemGroup>
18-
1914
</Project>
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFrameworks>$(_ProjectTargetFrameworks)</TargetFrameworks>
5-
64
<Description>Contains HealthChecks for Azure Blob Storage.</Description>
75
<PackageTags>$(PackageTags);azure;storage;blob;</PackageTags>
86
</PropertyGroup>
9-
107
<ItemGroup>
118
<PackageReference Include="Azure.Identity" />
129
<PackageReference Include="Azure.Storage.Blobs" />
1310
<PackageReference Include="NetEvolve.Arguments" />
1411
<PackageReference Include="NetEvolve.Extensions.Tasks" />
1512
</ItemGroup>
16-
1713
<ItemGroup>
1814
<ProjectReference Include="..\NetEvolve.HealthChecks.Abstractions\NetEvolve.HealthChecks.Abstractions.csproj" />
1915
</ItemGroup>
20-
2116
</Project>
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFrameworks>$(_ProjectTargetFrameworks)</TargetFrameworks>
5-
64
<Description>Contains HealthChecks for Azure Queue Storage.</Description>
75
<PackageTags>$(PackageTags);azure;storage;queue;</PackageTags>
86
</PropertyGroup>
9-
107
<ItemGroup>
118
<PackageReference Include="Azure.Identity" />
129
<PackageReference Include="Azure.Storage.Queues" />
1310
<PackageReference Include="NetEvolve.Arguments" />
1411
<PackageReference Include="NetEvolve.Extensions.Tasks" />
1512
</ItemGroup>
16-
1713
<ItemGroup>
1814
<ProjectReference Include="..\NetEvolve.HealthChecks.Abstractions\NetEvolve.HealthChecks.Abstractions.csproj" />
1915
</ItemGroup>
20-
2116
</Project>
Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFrameworks>$(_ProjectTargetFrameworks)</TargetFrameworks>
5-
64
<Description>Contains HealthChecks for Azure Table Storage.</Description>
75
<PackageTags>$(PackageTags);azure;data;table;</PackageTags>
86
</PropertyGroup>
9-
107
<ItemGroup>
118
<PackageReference Include="Azure.Data.Tables" />
129
<PackageReference Include="Azure.Identity" />
1310
<PackageReference Include="NetEvolve.Arguments" />
1411
<PackageReference Include="NetEvolve.Extensions.Tasks" />
1512
</ItemGroup>
16-
1713
<ItemGroup>
1814
<ProjectReference Include="..\NetEvolve.HealthChecks.Abstractions\NetEvolve.HealthChecks.Abstractions.csproj" />
1915
</ItemGroup>
20-
2116
<ItemGroup>
2217
<None Update="README.md">
2318
<PackagePath></PackagePath>
2419
<Visible>true</Visible>
2520
<Pack>true</Pack>
2621
</None>
2722
</ItemGroup>
28-
2923
</Project>

0 commit comments

Comments
 (0)