File tree Expand file tree Collapse file tree 8 files changed +35
-43
lines changed
Hedgehog.Xunit.Examples.CSharp
Hedgehog.Xunit.Examples.FSharp
Hedgehog.Xunit.Tests.CSharp
Hedgehog.Xunit.Tests.FSharp Expand file tree Collapse file tree 8 files changed +35
-43
lines changed Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111
1212 steps :
13- - uses : actions/checkout@v2
14- - name : Setup .NET Core
15- uses : actions/setup-dotnet@v3
13+ - uses : actions/checkout@v4
14+ - name : Setup .NET
15+ uses : actions/setup-dotnet@v4
16+ with :
17+ dotnet-version : 8.0.x
1618 - name : Build
1719 run : dotnet build -c Release "src/Hedgehog.Xunit"
1820 - name : Test F#
Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111
1212 steps :
13- - uses : actions/checkout@v2
14- - name : Setup .NET Core
15- uses : actions/setup-dotnet@v3
13+ - uses : actions/checkout@v4
14+ - name : Setup .NET
15+ uses : actions/setup-dotnet@v4
16+ with :
17+ dotnet-version : 8.0.x
1618 - name : Build
1719 run : dotnet build -c Release "src/Hedgehog.Xunit"
1820 - name : Test F#
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net6.0 </TargetFramework >
4+ <TargetFramework >net8 </TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
77
88 <IsPackable >false</IsPackable >
99 </PropertyGroup >
1010
1111 <ItemGroup >
12- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.6.3 " />
13- <PackageReference Include =" xunit" Version =" 2.4.2 " />
14- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.5 " >
12+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.13.0 " />
13+ <PackageReference Include =" xunit" Version =" 2.9.3 " />
14+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.2 " >
1515 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1616 <PrivateAssets >all</PrivateAssets >
1717 </PackageReference >
18- <PackageReference Include =" coverlet.collector" Version =" 6.0.0 " >
18+ <PackageReference Include =" coverlet.collector" Version =" 6.0.4 " >
1919 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
2020 <PrivateAssets >all</PrivateAssets >
2121 </PackageReference >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net6.0 </TargetFramework >
4+ <TargetFramework >net8 </TargetFramework >
55
66 <IsPackable >false</IsPackable >
77 </PropertyGroup >
1111 </ItemGroup >
1212
1313 <ItemGroup >
14- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.6.3 " />
15- <PackageReference Include =" xunit" Version =" 2.4.2 " />
16- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.5 " >
14+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.13.0 " />
15+ <PackageReference Include =" xunit" Version =" 2.9.3 " />
16+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.2 " >
1717 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1818 <PrivateAssets >all</PrivateAssets >
1919 </PackageReference >
20- <PackageReference Include =" coverlet.collector" Version =" 6.0.0 " >
20+ <PackageReference Include =" coverlet.collector" Version =" 6.0.4 " >
2121 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
2222 <PrivateAssets >all</PrivateAssets >
2323 </PackageReference >
2727 <ProjectReference Include =" ..\..\src\Hedgehog.Xunit\Hedgehog.Xunit.fsproj" />
2828 </ItemGroup >
2929
30- <ItemGroup >
31- <PackageReference Update =" FSharp.Core" Version =" 7.0.300" />
32- </ItemGroup >
33-
3430</Project >
Original file line number Diff line number Diff line change 11{
22 "sdk" : {
33 "rollForward" : " feature" ,
4- "version" : " 6 .0.411 "
4+ "version" : " 8 .0.0 "
55 }
6- }
6+ }
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <IsPackable >true</IsPackable >
5- <TargetFramework >netstandard2.0 </TargetFramework >
5+ <TargetFramework >netstandard2.1 </TargetFramework >
66 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
77 <GenerateDocumentationFile >true</GenerateDocumentationFile >
88 <PublishRepositoryUrl >true</PublishRepositoryUrl >
@@ -28,8 +28,8 @@ Docs at https://github.com/hedgehogqa/fsharp-hedgehog-xunit
2828 </PropertyGroup >
2929
3030 <ItemGroup >
31- <PackageReference Include =" Hedgehog.Experimental" Version =" 0.7 .0" />
32- <PackageReference Include =" xunit.core" Version =" 2.4.2 " />
31+ <PackageReference Include =" Hedgehog.Experimental" Version =" 0.9 .0" />
32+ <PackageReference Include =" xunit.core" Version =" 2.9.3 " />
3333 </ItemGroup >
3434
3535 <ItemGroup >
@@ -39,10 +39,6 @@ Docs at https://github.com/hedgehogqa/fsharp-hedgehog-xunit
3939 <Compile Include =" XunitOverrides.fs" />
4040 </ItemGroup >
4141
42- <ItemGroup >
43- <PackageReference Update =" FSharp.Core" Version =" 7.0.300" />
44- </ItemGroup >
45-
4642 <ItemGroup >
4743 <AssemblyAttribute Include =" System.Runtime.CompilerServices.InternalsVisibleTo" >
4844 <_Parameter1 >$(AssemblyName).Tests.FSharp</_Parameter1 >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net6.0 </TargetFramework >
4+ <TargetFramework >net8 </TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
77
1010 </PropertyGroup >
1111
1212 <ItemGroup >
13- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.6.3 " />
14- <PackageReference Include =" xunit" Version =" 2.4.2 " />
15- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.5 " >
13+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.13.0 " />
14+ <PackageReference Include =" xunit" Version =" 2.9.3 " />
15+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.2 " >
1616 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1717 <PrivateAssets >all</PrivateAssets >
1818 </PackageReference >
19- <PackageReference Include =" coverlet.collector" Version =" 6.0.0 " >
19+ <PackageReference Include =" coverlet.collector" Version =" 6.0.4 " >
2020 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
2121 <PrivateAssets >all</PrivateAssets >
2222 </PackageReference >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net6.0 </TargetFramework >
4+ <TargetFramework >net8 </TargetFramework >
55 </PropertyGroup >
66
77 <ItemGroup >
88 <Compile Include =" PropertyTests.fs" />
99 </ItemGroup >
1010
1111 <ItemGroup >
12- <PackageReference Include =" coverlet.msbuild" Version =" 6.0.0 " >
12+ <PackageReference Include =" coverlet.msbuild" Version =" 6.0.4 " >
1313 <PrivateAssets >all</PrivateAssets >
1414 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1515 </PackageReference >
16- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.6.3 " />
16+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.13.0 " />
1717 <PackageReference Include =" TaskBuilder.fs" Version =" 2.1.0" />
18- <PackageReference Include =" xunit" Version =" 2.4.2 " />
18+ <PackageReference Include =" xunit" Version =" 2.9.3 " />
1919 <PackageReference Include =" xunit.abstractions" Version =" 2.0.3" />
20- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.5 " >
20+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.2 " >
2121 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
2222 <PrivateAssets >all</PrivateAssets >
2323 </PackageReference >
2424 </ItemGroup >
2525
2626 <ItemGroup >
2727 <ProjectReference Include =" ..\..\src\Hedgehog.Xunit\Hedgehog.Xunit.fsproj" />
28- </ItemGroup >
29-
30- <ItemGroup >
31- <PackageReference Update =" FSharp.Core" Version =" 7.0.300" />
3228 </ItemGroup >
3329
3430</Project >
You can’t perform that action at this time.
0 commit comments