Skip to content

Commit fd21d84

Browse files
authored
Merge pull request #3303 from GitTools/dependabot/nuget/MSBuild.ProjectCreation-9.0.1
(deps): Bump MSBuild.ProjectCreation from 8.3.0 to 9.0.1
2 parents 506b6ec + ff2f338 commit fd21d84

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
-
3131
name: Test Summary
3232
uses: test-summary/action@v2
33+
if: matrix.targetFramework == 'net7.0'
3334
with:
3435
paths: artifacts/test-results/*.results.xml
35-
if: always()

src/Directory.Packages.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageVersion Include="LibGit2Sharp.NativeBinaries" Version="2.0.315-alpha.0.9" />
1010
<PackageVersion Include="JetBrains.Annotations" Version="2022.3.1" />
1111
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.5.0" />
12-
<PackageVersion Include="Microsoft.Build" Version="17.3.2" />
12+
<PackageVersion Include="Microsoft.Build" Version="17.5.0" />
1313
<PackageVersion Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4" />
1414
<PackageVersion Include="Microsoft.Extensions.Configuration.CommandLine" Version="7.0.0" />
1515
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
@@ -22,7 +22,7 @@
2222
<PackageVersion Include="Mono.Cecil" Version="0.11.4" />
2323
<PackageVersion Include="Buildalyzer" Version="5.0.0" />
2424
<PackageVersion Include="coverlet.msbuild" Version="3.2.0" />
25-
<PackageVersion Include="MSBuild.ProjectCreation" Version="8.3.0" />
25+
<PackageVersion Include="MSBuild.ProjectCreation" Version="9.0.1" />
2626
<PackageVersion Include="NSubstitute" Version="5.0.0" />
2727
<PackageVersion Include="NUnit" Version="3.13.3" />
2828
<PackageVersion Include="NUnit.Analyzers" Version="3.6.0" />
@@ -37,4 +37,4 @@
3737
<PackageVersion Include="System.Text.Encodings.Web" Version="7.0.0" />
3838
<PackageVersion Include="YamlDotNet" Version="13.0.1" />
3939
</ItemGroup>
40-
</Project>
40+
</Project>

src/GitVersion.Testing/Internal/PathHelper.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ namespace GitVersion.Testing.Internal;
22

33
internal static class PathHelper
44
{
5-
public static string GetTempPath() => Path.Combine(Path.GetTempPath(), "TestRepositories", Guid.NewGuid().ToString());
5+
public static string GetCurrentDirectory() => Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) ?? throw new InvalidOperationException();
6+
public static string GetTempPath() => Path.Combine(GetCurrentDirectory(), "TestRepositories", Guid.NewGuid().ToString());
67
}

0 commit comments

Comments
 (0)