File tree Expand file tree Collapse file tree 6 files changed +11
-24
lines changed
tests/NetEvolve.Arguments.Tests.Unit Expand file tree Collapse file tree 6 files changed +11
-24
lines changed Original file line number Diff line number Diff line change 2121jobs :
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 }}
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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" />
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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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" />
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 >
You can’t perform that action at this time.
0 commit comments