Skip to content

Commit 10a26db

Browse files
build: update to net9
1 parent 1bcd2db commit 10a26db

4 files changed

Lines changed: 19 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,4 +395,5 @@ FodyWeavers.xsd
395395
*.msp
396396

397397
# JetBrains Rider
398+
.idea/
398399
*.sln.iml

PACKAGE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[![Card](https://raw.githubusercontent.com/technologists-team/hypercube-mathematics/main/assets/card.svg)](https://github.com/technologists-team/hypercube-mathematics)
2+
3+
[![C#](https://img.shields.io/badge/c%23-%23239120.svg?style=for-the-badge&logo=c-sharp&logoColor=white)](https://learn.microsoft.com/en-us/dotnet/csharp/)
4+
[![.Net](https://img.shields.io/badge/.NET-5C2D91?style=for-the-badge&logo=.net&logoColor=white)](https://dotnet.microsoft.com/en-us/download)
5+
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge)](https://opensource.org/licenses/MIT)
6+
7+
## License
8+
All code for the repository is licensed under [MIT](https://github.com/technologists-team/hypercube-mathematics/blob/main/LICENSE).

global.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"sdk": {
3+
"version": "9.0.304",
4+
"rollForward": "latestFeature",
5+
"allowPrerelease": false
6+
}
7+
}

src/Hypercube.Mathematics/Hypercube.Mathematics.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
99

10+
<PackageReadmeFile>README.md</PackageReadmeFile>
1011
<PackageIcon>assets/logo.png</PackageIcon>
1112

1213
<Version>1.0.5</Version>
@@ -15,8 +16,8 @@
1516
<RepositoryUrl>https://github.com/technologists-team/hypercube-mathematics</RepositoryUrl>
1617
</PropertyGroup>
1718

18-
1919
<ItemGroup>
20+
<None Include="../../PACKAGE.md" Pack="true" PackagePath="README.md" Visible="false"/>
2021
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false"/>
2122
<None Include="../../assets/logo.png" Pack="true" PackagePath="assets/" Visible="false" />
2223
</ItemGroup>

0 commit comments

Comments
 (0)