Skip to content

Commit caf2ef3

Browse files
committed
release/v3.1.1
1 parent da771ee commit caf2ef3

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

.github/workflows/dotnet.yml

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

33
on:
44
push:
5-
branches: [ main, dev, dev/*, feature/*, fix/*, release/* ]
5+
branches: [ main, dev, feature/*, fix/*, release/* ]
66

77
pull_request:
88
branches: [ main ]

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020-2022 Andrei Sergeev, Pavel Moskovoy
3+
Copyright (c) 2020-2025 Andrei Sergeev, Pavel Moskovoy
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/unit-test-data/UnitTest.Data.Tests/UnitTest.Data.Tests.fsproj

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5-
<GenerateProgramFile>true</GenerateProgramFile>
5+
<LangVersion>latest</LangVersion>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<InvariantGlobalization>true</InvariantGlobalization>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1010
<NoWarn>$(NoWarn);IDE0130</NoWarn>
1111
<IsPackable>false</IsPackable>
12+
<IsTestProject>true</IsTestProject>
1213
<Authors>Andrei Sergeev, Pavel Moskovoy</Authors>
13-
<Copyright>Copyright © 2020-2024 Andrei Sergeev, Pavel Moskovoy</Copyright>
14+
<Copyright>Copyright © 2020-2025 Andrei Sergeev, Pavel Moskovoy</Copyright>
1415
<RootNamespace>PrimeFuncPack.UnitTest.Data.Tests</RootNamespace>
1516
<AssemblyName>PrimeFuncPack.UnitTest.Data.Tests</AssemblyName>
17+
<GenerateProgramFile>true</GenerateProgramFile>
1618
</PropertyGroup>
1719

1820
<ItemGroup>
@@ -30,16 +32,16 @@
3032
</ItemGroup>
3133

3234
<ItemGroup>
35+
<PackageReference Include="coverlet.collector" Version="6.0.3">
36+
<PrivateAssets>all</PrivateAssets>
37+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
38+
</PackageReference>
3339
<PackageReference Include="DeepEqual" Version="5.1.0" />
3440
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
3541
<PackageReference Include="xunit" Version="2.9.2" />
3642
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
37-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3843
<PrivateAssets>all</PrivateAssets>
39-
</PackageReference>
40-
<PackageReference Include="coverlet.collector" Version="6.0.2">
4144
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
42-
<PrivateAssets>all</PrivateAssets>
4345
</PackageReference>
4446
</ItemGroup>
4547

src/unit-test-data/UnitTest.Data/UnitTest.Data.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5+
<LangVersion>latest</LangVersion>
56
<ImplicitUsings>disable</ImplicitUsings>
67
<Nullable>enable</Nullable>
78
<InvariantGlobalization>true</InvariantGlobalization>
@@ -14,11 +15,11 @@
1415
<RepositoryUrl>https://github.com/pfpack/pfpack-unit-test</RepositoryUrl>
1516
<Company>pfpack</Company>
1617
<Authors>Andrei Sergeev, Pavel Moskovoy</Authors>
17-
<Copyright>Copyright © 2020-2024 Andrei Sergeev, Pavel Moskovoy</Copyright>
18+
<Copyright>Copyright © 2020-2025 Andrei Sergeev, Pavel Moskovoy</Copyright>
1819
<Description>PrimeFuncPack UnitTest.Data is a library for .NET consisting of data types and predefined values to support unit testing.</Description>
1920
<RootNamespace>PrimeFuncPack.UnitTest</RootNamespace>
2021
<AssemblyName>PrimeFuncPack.UnitTest.Data</AssemblyName>
21-
<Version>3.1.1-preview.1</Version>
22+
<Version>3.1.1</Version>
2223
</PropertyGroup>
2324

2425
<ItemGroup>

0 commit comments

Comments
 (0)