Skip to content

Commit 3040420

Browse files
chore(ci): bump dailydevops/pipelines from 0.14.68 to 0.14.79 (#332)
1 parent 36e45ed commit 3040420

File tree

6 files changed

+11
-24
lines changed

6 files changed

+11
-24
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/[email protected].68
24+
uses: dailydevops/pipelines/.github/workflows/[email protected].79
2525
with:
2626
enableSonarQube: true
2727
dotnet-logging: ${{ inputs.dotnet-logging }}

Directory.Build.props

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<Project>
2-
32
<PropertyGroup>
43
<!-- Workaround, until https://github.com/GitTools/GitVersion/pull/4206 is released -->
54
<GitVersionTargetFramework>net8.0</GitVersionTargetFramework>
65
</PropertyGroup>
7-
86
</Project>

Directory.Packages.props

Lines changed: 10 additions & 4 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.1.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="coverlet.collector" Version="6.0.4" />
@@ -22,7 +29,6 @@
2229
<PackageVersion Include="Polyfill" Version="7.27.0" />
2330
<PackageVersion Include="xunit" Version="2.9.3" />
2431
</ItemGroup>
25-
2632
<ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' Or '$(TargetFramework)' == 'netcoreapp3.1' ">
2733
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.2" />
2834
</ItemGroup>

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 & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,21 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFrameworks>netstandard2.0;net7.0;net8.0</TargetFrameworks>
5-
64
<Description>A library that provides compatible `ThrowIf` methods for .NET / C# for older runtimes.</Description>
7-
85
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9-
106
<Title>$(MSBuildProjectName)</Title>
117
<PackageProjectUrl>https://github.com/dailydevops/arguments</PackageProjectUrl>
128
<RepositoryUrl>https://github.com/dailydevops/arguments.git</RepositoryUrl>
139
<PackageTags>guard;clausel;exceptions</PackageTags>
14-
1510
<PackageReleaseNotes>$(PackageProjectUrl)/releases/</PackageReleaseNotes>
16-
1711
<CopyrightYearStart>2023</CopyrightYearStart>
18-
1912
<!-- Remove, when Polyfill has fixed this. -->
2013
<DisableBannedApiForPerformance>true</DisableBannedApiForPerformance>
2114
</PropertyGroup>
22-
2315
<ItemGroup>
2416
<PackageReference Include="Polyfill" Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
2517
<PrivateAssets>all</PrivateAssets>
2618
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2719
</PackageReference>
2820
</ItemGroup>
29-
3021
</Project>

tests/NetEvolve.Arguments.Tests.Unit/NetEvolve.Arguments.Tests.Unit.csproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
54
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
6-
75
<NoWarn>$(NoWarn);NU1701</NoWarn>
8-
96
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
107
</PropertyGroup>
11-
128
<ItemGroup>
139
<PackageReference Include="coverlet.msbuild" />
1410
<PackageReference Include="Microsoft.NET.Test.Sdk" />
@@ -23,9 +19,7 @@
2319
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2420
</PackageReference>
2521
</ItemGroup>
26-
2722
<ItemGroup>
2823
<ProjectReference Include="..\..\src\NetEvolve.Arguments\NetEvolve.Arguments.csproj" />
2924
</ItemGroup>
30-
3125
</Project>

0 commit comments

Comments
 (0)