File tree Expand file tree Collapse file tree
ADotNet.Infrastructure.Build Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >net9 .0</TargetFramework >
5+ <TargetFramework >net10 .0</TargetFramework >
66 <IsPackable >false</IsPackable >
77 </PropertyGroup >
88
Original file line number Diff line number Diff 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 }
Load diff This file was deleted.
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >net9 .0</TargetFramework >
5+ <TargetFramework >net10 .0</TargetFramework >
66 <IsPackable >false</IsPackable >
77 </PropertyGroup >
88
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments