Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Nov 9, 2023
2 parents 61c74de + 1ddb7a3 commit afd1cf2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"dpi": {
"version": "2023.7.12.68",
"version": "2023.10.22.71",
"commands": [
"dpi"
]
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.401",
"version": "7.0.403",
"rollForward": "latestMinor",
"allowPrerelease": false
}
Expand Down
2 changes: 1 addition & 1 deletion src/ARI.TestWeb/ARI.TestWeb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Devlead.Statiq" Version="0.20.0" />
<PackageReference Include="Devlead.Statiq" Version="0.20.1" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/ARI.Tests/ARI.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="NUnit.Analyzers" Version="3.8.0">
<PackageReference Include="NUnit.Analyzers" Version="3.9.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Verify.NUnit" Version="22.1.3" />
<PackageReference Include="Verify.NUnit" Version="22.1.4" />
<PackageReference Include="Verify.Http" Version="4.3.2" />
<PackageReference Include="Cake.Testing" Version="3.1.0" />
<PackageReference Include="NSubstitute" Version="5.1.0" />
Expand Down
6 changes: 3 additions & 3 deletions src/ARI/ARI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.10.2" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.9" />
<PackageReference Include="Azure.Identity" Version="1.10.3" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="Cake.Bridge.DependencyInjection" Version="0.15.0" />
<PackageReference Include="Cake.Common" Version="3.1.0" />
<PackageReference Include="Spectre.Console.Cli.Extensions.DependencyInjection" Version="0.1.0" />
<PackageReference Include="Spectre.Console.Cli.Extensions.DependencyInjection" Version="0.2.0" />
<PackageReference Include="Spectre.Console" Version="0.47.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.47.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
Expand Down
5 changes: 4 additions & 1 deletion src/ARI/Extensions/CakeContextExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ public static TextWriter OpenIndexWrite(
DirectoryPath targetPath
)
{
cakeContext.EnsureDirectoryExists(targetPath);
lock (cakeContext.FileSystem)
{
cakeContext.EnsureDirectoryExists(targetPath);
}

var stream = cakeContext
.FileSystem
Expand Down

0 comments on commit afd1cf2

Please sign in to comment.