Skip to content

Commit 8c53b0a

Browse files
committed
CODE RUB: Package Updates
1 parent 25cc16b commit 8c53b0a

9 files changed

Lines changed: 29 additions & 67 deletions

File tree

ADotNet.Infrastructure.Build/ADotNet.Infrastructure.Build.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

ADotNet.Infrastructure.Build/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ static void Main(string[] args)
1717
scriptGenerationService.GenerateBuildScript(
1818
branchName: "main",
1919
projectName: "ADotNet",
20-
dotNetVersion: "9.0.100");
20+
dotNetVersion: "10.x");
2121

2222
scriptGenerationService.GeneratePrLintScript(branchName: "main");
2323
}

ADotNet.sln

Lines changed: 0 additions & 49 deletions
This file was deleted.

ADotNet.slnx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Solution>
2+
<Folder Name="/Solution Items/">
3+
<File Path=".editorconfig" />
4+
<File Path=".github/workflows/build.yml" />
5+
</Folder>
6+
<Project Path="AdoNet.Tests.Console/ADotNet.Tests.Console.csproj" />
7+
<Project Path="AdoNet.Tests.Unit/ADotNet.Tests.Unit.csproj" />
8+
<Project Path="ADotNet.Infrastructure.Build/ADotNet.Infrastructure.Build.csproj" />
9+
<Project Path="ADotNet/ADotNet.csproj" />
10+
</Solution>

ADotNet/ADotNet.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1;net10.0</TargetFrameworks>
55
<LangVersion>11.0</LangVersion>
66
<Copyright>Copyright (c) The Standard Community</Copyright>
77
<Description>
@@ -57,9 +57,9 @@
5757
</ItemGroup>
5858

5959
<ItemGroup>
60-
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
61-
<PackageReference Include="Xeption" Version="2.5.0" />
62-
<PackageReference Include="YamlDotNet" Version="13.1.0" />
60+
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
61+
<PackageReference Include="Xeption" Version="2.8.0" />
62+
<PackageReference Include="YamlDotNet" Version="17.1.0" />
6363
</ItemGroup>
6464

6565
<ItemGroup>

AdoNet.Tests.Console/ADotNet.Tests.Console.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

AdoNet.Tests.Unit/ADotNet.Tests.Unit.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="FluentAssertions" Version="6.5.1" />
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0-preview-20220131-20" />
11-
<PackageReference Include="Moq" Version="4.17.1" />
12-
<PackageReference Include="Tynamix.ObjectFiller" Version="1.5.7" />
13-
<PackageReference Include="xunit" Version="2.4.2-pre.12" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
9+
<PackageReference Include="FluentAssertions" Version="[7.2.2]" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
11+
<PackageReference Include="Moq" Version="4.20.72" />
12+
<PackageReference Include="Tynamix.ObjectFiller" Version="1.5.9" />
13+
<PackageReference Include="xunit.v3" Version="3.2.2" />
14+
<PackageReference Include="xunit.analyzers" Version="1.27.0" />
15+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
1516
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1617
<PrivateAssets>all</PrivateAssets>
1718
</PackageReference>
18-
<PackageReference Include="coverlet.collector" Version="3.1.2">
19+
<PackageReference Include="coverlet.collector" Version="10.0.0">
1920
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2021
<PrivateAssets>all</PrivateAssets>
2122
</PackageReference>

AdoNet.Tests.Unit/Services/Builds/BuildServiceTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ private static string GetRandomFilePath() =>
4242
private static string GetRandomString() =>
4343
new MnemonicString().GetValue();
4444

45-
public static TheoryData FileValidationExceptions()
45+
public static TheoryData<Exception> FileValidationExceptions()
4646
{
4747
return new TheoryData<Exception>
4848
{
@@ -53,7 +53,7 @@ public static TheoryData FileValidationExceptions()
5353
};
5454
}
5555

56-
public static TheoryData FileDependencyExceptions()
56+
public static TheoryData<Exception> FileDependencyExceptions()
5757
{
5858
return new TheoryData<Exception>
5959
{

AdoNet.Tests.Unit/Services/Foundations/Files/FileServiceTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public FileServiceTests()
2626
filesBroker: this.filesBrokerMock.Object);
2727
}
2828

29-
public static TheoryData FileDependencyValidationExceptions()
29+
public static TheoryData<Exception> FileDependencyValidationExceptions()
3030
{
3131
return new TheoryData<Exception>()
3232
{

0 commit comments

Comments
 (0)