Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
DotNetVersion: 8.0.x
DotNetVersion: 9.0.x

defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
DotNetVersion: 8.0.x
DotNetVersion: 9.0.x

jobs:
publish:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-new-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
DotNetVersion: 8.0.x
DotNetVersion: 9.0.x

jobs:
publish:
Expand Down
2 changes: 1 addition & 1 deletion source/Atmoos.Sphere.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- Build info common to all projects within the atmoos sphere project -->

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="../Atmoos.Sphere.Pack.targets" />

<PropertyGroup>
<Version>0.0.3</Version>
<Version>0.1.0</Version>
<PackageTags>functional programming, functors, monads</PackageTags>
<Description>Atmoos Sphere Functional: A handful of types that support a more functional approach to C#.</Description>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions source/Atmoos.Sphere.Test.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="xunit" Version="2.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion source/Atmoos.Sphere/Atmoos.Sphere.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="../Atmoos.Sphere.Pack.targets" />

<PropertyGroup>
<Version>0.3.5</Version>
<Version>0.4.0</Version>
<Description>Atmoos Sphere: Utilities, mechanisms, and extension methods.</Description>
</PropertyGroup>

Expand Down
Loading