File tree Expand file tree Collapse file tree 4 files changed +22
-17
lines changed
Expand file tree Collapse file tree 4 files changed +22
-17
lines changed Original file line number Diff line number Diff line change @@ -28,16 +28,10 @@ jobs:
2828 echo "BUILD_VERSION=$version" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
2929 shell : pwsh
3030
31- - name : Setup NuGet
32- uses : NuGet/setup-nuget@v2.0.0
33-
34- - name : Restore dependencies
35- run : nuget restore $SOLUTION
36-
37- - name : Setup .NET 6.0
31+ - name : Setup .NET 8.0
3832 uses : actions/setup-dotnet@v4
3933 with :
40- dotnet-version : 6 .0.x
34+ dotnet-version : 8 .0.x
4135
4236 - name : Restore dependencies
4337 run : dotnet restore $SOLUTION
5044
5145 - name : Publish
5246 if : startsWith(github.ref, 'refs/tags/')
53- run : nuget push **\*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}
47+ run : dotnet nuget push **\*.nupkg --source 'https://api.nuget.org/v3/index.json' --api-key ${{secrets.NUGET_API_KEY}}
Original file line number Diff line number Diff line change 1+ # 1.1.0 (2025-09-08)
2+ ## Changes
3+ - Add support for .NET 8.0.
4+ - Remove support for .NET 6.0.
5+
16# 1.0.0 (2024-06-12)
27## Features
38- Added AutoFixture customizations/extensions
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 .0</TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
7- <Version >1.0 .0</Version >
7+ <Version >1.1 .0</Version >
88 <Title >AutoFixture.Community.Customizations</Title >
99 <Authors >Owen Krueger</Authors >
1010 <RootNamespace >AutoFixture.Community.Customizations</RootNamespace >
1616 <PackageTags >AutoFixture;DateOnly;TimeOnly</PackageTags >
1717 <RepositoryUrl >https://github.com/Owen-Krueger/AutoFixture.Community.Customizations</RepositoryUrl >
1818 <RepositoryType >git</RepositoryType >
19- <PackageReleaseNotes >https://github.com/Owen-Krueger/AutoFixture.Community.Customizations/releases/tag/v1.0 .0</PackageReleaseNotes >
19+ <PackageReleaseNotes >https://github.com/Owen-Krueger/AutoFixture.Community.Customizations/releases/tag/v1.1 .0</PackageReleaseNotes >
2020 </PropertyGroup >
2121
2222 <ItemGroup >
Original file line number Diff line number Diff line change 1111 </PropertyGroup >
1212
1313 <ItemGroup >
14- <PackageReference Include =" coverlet.collector" Version =" 6.0.0" />
15- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.8.0" />
16- <PackageReference Include =" NUnit" Version =" 3.14.0" />
17- <PackageReference Include =" NUnit.Analyzers" Version =" 3.9.0" />
18- <PackageReference Include =" NUnit3TestAdapter" Version =" 4.5.0" />
14+ <PackageReference Include =" coverlet.collector" Version =" 6.0.4" >
15+ <PrivateAssets >all</PrivateAssets >
16+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
17+ </PackageReference >
18+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.14.1" />
19+ <PackageReference Include =" NUnit" Version =" 4.4.0" />
20+ <PackageReference Include =" NUnit.Analyzers" Version =" 4.10.0" >
21+ <PrivateAssets >all</PrivateAssets >
22+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
23+ </PackageReference >
24+ <PackageReference Include =" NUnit3TestAdapter" Version =" 5.1.0" />
1925 </ItemGroup >
2026
2127 <ItemGroup >
You can’t perform that action at this time.
0 commit comments