Skip to content

Commit bc65bb9

Browse files
authored
Merge pull request #130 from AArnott/dev/andre/libtemplateUpdate
Merge latest Library.Template
2 parents 4f1a750 + 1052dcf commit bc65bb9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.config/dotnet-tools.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"rollForward": false
1818
},
1919
"nbgv": {
20-
"version": "3.7.112",
20+
"version": "3.7.115",
2121
"commands": [
2222
"nbgv"
2323
],

Directory.Packages.props

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
</PropertyGroup>
88
<ItemGroup>
99
<PackageVersion Include="Validation" Version="2.6.68" />
10+
<PackageVersion Include="xunit.v3.extensibility.core" Version="1.0.0" />
1011
</ItemGroup>
1112
<ItemGroup Label="Library.Template">
1213
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
13-
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.0" />
14+
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.1" />
1415
<PackageVersion Include="xunit.v3" Version="1.0.0" />
15-
<PackageVersion Include="xunit.v3.extensibility.core" Version="1.0.0" />
1616
</ItemGroup>
1717
<ItemGroup>
1818
<!-- Put repo-specific GlobalPackageReference items in this group. -->
@@ -21,7 +21,7 @@
2121
<GlobalPackageReference Include="CSharpIsNullAnalyzer" Version="0.1.593" />
2222
<GlobalPackageReference Include="DotNetAnalyzers.DocumentationAnalyzers" Version="1.0.0-beta.59" />
2323
<!-- The condition works around https://github.com/dotnet/sdk/issues/44951 -->
24-
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.7.112" Condition="!('$(TF_BUILD)'=='true' and '$(dotnetformat)'=='true')" />
24+
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.7.115" Condition="!('$(TF_BUILD)'=='true' and '$(dotnetformat)'=='true')" />
2525
<GlobalPackageReference Include="PolySharp" Version="1.15.0" />
2626
<GlobalPackageReference Include="StyleCop.Analyzers.Unstable" Version="1.2.0.556" />
2727
</ItemGroup>

tools/artifacts/_stage_all.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ param (
1111
[switch]$AvoidSymbolicLinks
1212
)
1313

14-
$ArtifactStagingFolder = & "$PSScriptRoot/../../tools/Get-ArtifactsStagingDirectory.ps1" -CleanIfLocal
14+
$ArtifactStagingFolder = & "$PSScriptRoot/../Get-ArtifactsStagingDirectory.ps1" -CleanIfLocal
1515

1616
function Create-SymbolicLink {
1717
param (

tools/artifacts/build_logs.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$ArtifactStagingFolder = & "$PSScriptRoot/../../tools/Get-ArtifactsStagingDirectory.ps1"
1+
$ArtifactStagingFolder = & "$PSScriptRoot/../Get-ArtifactsStagingDirectory.ps1"
22

33
if (!(Test-Path $ArtifactStagingFolder/build_logs)) { return }
44

tools/artifacts/testResults.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $result = @{}
77
$testRoot = Resolve-Path "$PSScriptRoot\..\..\test"
88
$result[$testRoot] = (Get-ChildItem "$testRoot\TestResults" -Recurse -Directory | Get-ChildItem -Recurse -File)
99

10-
$artifactStaging = & "$PSScriptRoot\..\Get-ArtifactsStagingDirectory.ps1"
10+
$artifactStaging = & "$PSScriptRoot/../Get-ArtifactsStagingDirectory.ps1"
1111
$testlogsPath = Join-Path $artifactStaging "test_logs"
1212
if (Test-Path $testlogsPath) {
1313
$result[$testlogsPath] = Get-ChildItem $testlogsPath -Recurse;

0 commit comments

Comments
 (0)