Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.test/Fixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ await Cli.Wrap("dotnet")
configure(args
.Add("run")
.Add("--project")
.Add(RootDirectory / "build"))
.Add((RootDirectory / "build").ToString()))
.Add("--no-logo");

if (skip)
Expand Down Expand Up @@ -465,7 +465,7 @@ await Cli.Wrap("git")
.Add("--bare")
.Add("--no-hardlinks")
.Add("--single-branch")
.Add(RootDirectory)
.Add(RootDirectory.ToString())
.Add(path))
.WithStandardOutputPipe(PipeTarget.ToDelegate(Console.WriteLine))
.WithStandardErrorPipe(PipeTarget.ToDelegate(output.WriteLine))
Expand Down
20 changes: 10 additions & 10 deletions build.test/build.test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Autofixture" Version="4.18.0" />
<PackageReference Include="Autofixture.xunit2" Version="4.18.0" />
<PackageReference Include="CLIWrap" Version="3.6.4" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Autofixture" Version="4.18.1" />
<PackageReference Include="Autofixture.xunit2" Version="4.18.1" />
<PackageReference Include="CLIWrap" Version="3.8.0" />
<PackageReference Include="FluentAssertions" Version="7.2.0" />
<PackageReference Include="GitSnapshotter" Version="0.0.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="21.1.7" />
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="21.1.7" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="22.0.10" />
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="22.0.10" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion build/Build.Features.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ sealed partial class Build
var command = string.Join(" ", commands);
Log.Information("{command}", command);

Devcontainer(command, customLogger: DevcontainerLog);
Devcontainer(command, logger: DevcontainerLog);
});

[UsedImplicitly]
Expand Down
2 changes: 1 addition & 1 deletion build/Build.Github.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ partial class Build
private const string REMOTE = "origin";
private const string REMOTE_MAIN_BRANCH = $"remotes/{REMOTE}/{MAIN_BRANCH}";

[PathExecutable("git")] readonly Tool Git = null!;
[LocalPath("git")] readonly Tool Git = null!;

[GitRepository] private readonly GitRepository Repository = null!;

Expand Down
6 changes: 3 additions & 3 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public sealed partial class Build : NukeBuild

private bool ShouldUpdateVersion = true;

[PathExecutable("bash")] private readonly Tool Bash = null!;
[LocalPath("bash")] private readonly Tool Bash = null!;

private Version GetFeatureVersion(string pathToFeatureDefinition)
{
Expand Down Expand Up @@ -115,7 +115,7 @@ await Cli.Wrap("git")
await Cli.Wrap("git")
.WithArguments(args => args
.Add("add")
.Add(FeatureRoot))
.Add(FeatureRoot.ToString()))
.WithStandardOutputPipe(PipeTarget.ToDelegate(x => Log.Information("{git_msg}", x)))
.WithStandardErrorPipe(PipeTarget.ToDelegate(x => Log.Error("{git_msg}", x)))
.ExecuteAsync();
Expand All @@ -124,7 +124,7 @@ await Cli.Wrap("git")
.WithArguments(args => args
.Add("commit")
.Add("--include")
.Add(FeatureRoot)
.Add(FeatureRoot.ToString())
.Add("--message")
.Add($"Release: feature {Feature} {version}"))
.WithEnvironmentVariables(dict =>
Expand Down
6 changes: 3 additions & 3 deletions build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CliWrap" Version="3.6.4" />
<PackageReference Include="Nuke.Common" Version="6.3.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
<PackageReference Include="CliWrap" Version="3.8.0" />
<PackageReference Include="Nuke.Common" Version="9.0.4" />
<PackageReference Include="Serilog.Settings.Configuration" Version="9.0.0" />
</ItemGroup>

</Project>
12 changes: 6 additions & 6 deletions devcontainers.sln.DotSettings.user
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AExceptionAggregator_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002Ejbdevcontainer_003Fconfig_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003F38284ca4f4afe378f96fccac3e179f4bceda7a74eb151623b66d2dc3634d9b_003FExceptionAggregator_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ATestInvoker_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002Ejbdevcontainer_003Fconfig_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Ff5545b2656401abe1a371ad2756d7d2328a38293f7ee8b163801bbf55cee8_003FTestInvoker_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
<s:String x:Key="/Default/Environment/UnitTesting/UnitTestSessionStore/Sessions/=2193dc6e_002De269_002D4aa1_002Dbb86_002Dc14fe21e1309/@EntryIndexedValue">&lt;SessionState ContinuousTestingMode="0" Name="All tests from &amp;lt;build.test&amp;gt;" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"&gt;
&lt;Project Location="/IdeaProjects/devcontainers/build.test" Presentation="&amp;lt;build.test&amp;gt;" /&gt;
<s:String x:Key="/Default/Environment/UnitTesting/UnitTestSessionStore/Sessions/=2193dc6e_002De269_002D4aa1_002Dbb86_002Dc14fe21e1309/@EntryIndexedValue">&lt;SessionState ContinuousTestingMode="0" Name="All tests from &amp;lt;build.test&amp;gt;" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"&gt;&#xD;
&lt;Project Location="\IdeaProjects\devcontainers\build.test" Presentation="&amp;lt;build.test&amp;gt;" /&gt;&#xD;
&lt;/SessionState&gt;</s:String>
<s:String x:Key="/Default/Environment/UnitTesting/UnitTestSessionStore/Sessions/=6d309931_002Dc8a6_002D425a_002Dae99_002Ddef731ad0f81/@EntryIndexedValue">&lt;SessionState ContinuousTestingMode="0" IsActive="True" Name="Session" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"&gt;
&lt;TestAncestor&gt;
&lt;TestId&gt;xUnit::C9391668-F7A0-435F-883F-71E5D107EF45::net8.0::build.test.RepositoryFixtureTests&lt;/TestId&gt;
&lt;/TestAncestor&gt;
<s:String x:Key="/Default/Environment/UnitTesting/UnitTestSessionStore/Sessions/=6d309931_002Dc8a6_002D425a_002Dae99_002Ddef731ad0f81/@EntryIndexedValue">&lt;SessionState ContinuousTestingMode="0" IsActive="True" Name="Session" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"&gt;&#xD;
&lt;TestAncestor&gt;&#xD;
&lt;TestId&gt;xUnit::C9391668-F7A0-435F-883F-71E5D107EF45::net8.0::build.test.RepositoryFixtureTests&lt;/TestId&gt;&#xD;
&lt;/TestAncestor&gt;&#xD;
&lt;/SessionState&gt;</s:String>

</wpf:ResourceDictionary>
Loading