Skip to content

Commit c3e4d2e

Browse files
chore(deps): update aspire to 9.3.0 (#2407)
* chore(deps): update aspire to 9.3.0 * VersionRegex * Update snap --------- Co-authored-by: Renovate Bot <[email protected]>
1 parent 703c83c commit c3e4d2e

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

TUnit.Templates.Tests/Snapshots/InstantiationTest.TUnit.Aspire.Starter._.verified/TUnit.Aspire.Starter/TUnit.Aspire.Starter.AppHost/TUnit.Aspire.Starter.AppHost.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<Sdk Name="Aspire.AppHost.Sdk" Version="9.2.1" />
3+
<Sdk Name="Aspire.AppHost.Sdk" Version="1.0.0" />
44

55
<PropertyGroup>
66
<OutputType>Exe</OutputType>

TUnit.Templates.Tests/TemplateTestBase.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public abstract partial class TemplateTestBase : IDisposable
2929
}.WithCustomScrubbers(ScrubbersDefinition.Empty.AddScrubber(sb =>
3030
{
3131
var original = sb.ToString();
32-
var matches = PackageVersionRegex().Matches(original);
32+
var matches = VersionRegex().Matches(original);
3333

3434
foreach (Match match in matches.Where(m => m.Success))
3535
{
@@ -59,7 +59,7 @@ public void Dispose()
5959
}
6060

6161
[GeneratedRegex("""
62-
<PackageReference Include="[^"]*" Version="([^"]*)"
62+
Version="([^"]*)"
6363
""")]
64-
private static partial Regex PackageVersionRegex();
64+
private static partial Regex VersionRegex();
6565
}

TUnit.Templates/content/TUnit.Aspire.Starter/ExampleNamespace.AppHost/ExampleNamespace.AppHost.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<Sdk Name="Aspire.AppHost.Sdk" Version="9.2.1" />
3+
<Sdk Name="Aspire.AppHost.Sdk" Version="9.3.0" />
44

55
<PropertyGroup>
66
<OutputType>Exe</OutputType>
@@ -12,8 +12,8 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Aspire.Hosting.AppHost" Version="9.2.1" />
16-
<PackageReference Include="Aspire.Hosting.Redis" Version="9.2.1" />
15+
<PackageReference Include="Aspire.Hosting.AppHost" Version="9.3.0" />
16+
<PackageReference Include="Aspire.Hosting.Redis" Version="9.3.0" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

TUnit.Templates/content/TUnit.Aspire.Starter/ExampleNamespace.TestProject/ExampleNamespace.TestProject.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
<ItemGroup>
13-
<PackageReference Include="Aspire.Hosting.Testing" Version="9.2.1" />
13+
<PackageReference Include="Aspire.Hosting.Testing" Version="9.3.0" />
1414
<PackageReference Include="TUnit" Version="0.20.18" />
1515
</ItemGroup>
1616

TUnit.Templates/content/TUnit.Aspire.Starter/ExampleNamespace.WebApp/ExampleNamespace.WebApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Aspire.StackExchange.Redis.OutputCaching" Version="9.2.1" />
10+
<PackageReference Include="Aspire.StackExchange.Redis.OutputCaching" Version="9.3.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

TUnit.Templates/content/TUnit.Aspire.Test/ExampleNamespace.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Aspire.Hosting.Testing" Version="9.2.1" />
12+
<PackageReference Include="Aspire.Hosting.Testing" Version="9.3.0" />
1313
<PackageReference Include="TUnit" Version="0.20.18" />
1414
</ItemGroup>
1515

0 commit comments

Comments
 (0)