Skip to content

Commit

Permalink
update .net8
Browse files Browse the repository at this point in the history
  • Loading branch information
tk-yoshimura committed Jan 20, 2024
1 parent b2016d4 commit 3724116
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Deterministic>false</Deterministic>
<ImplicitUsings>enable</ImplicitUsings>
Expand All @@ -17,7 +17,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="TYoshimura.MultiPrecision" Version="6.2.1" />
<PackageReference Include="TYoshimura.MultiPrecision" Version="6.3.0" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions MultiPrecisionSeriesAcceleration/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("MultiPrecision.SeriesAcceleration")]
[assembly: AssemblyCopyright("Copyright © T.Yoshimura 2023")]
[assembly: AssemblyCopyright("Copyright © T.Yoshimura 2023-2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: ComVisible(false)]

[assembly: Guid("0339055A-502C-4B1E-938A-74F07C2F37E3")]

[assembly: AssemblyVersion("1.0.2.*")]
[assembly: AssemblyVersion("1.1.0.*")]

[assembly: InternalsVisibleTo("MultiPrecisionSeriesAccelerationTest")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand All @@ -10,16 +10,19 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="coverlet.collector" Version="3.2.0" />
<PackageReference Include="TYoshimura.MultiPrecision" Version="6.2.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="TYoshimura.MultiPrecision" Version="6.3.0" />
</ItemGroup>

<ItemGroup>
<Reference Include="MultiPrecisionSeriesAcceleration">
<HintPath>..\MultiPrecisionSeriesAcceleration\bin\Debug\net7.0\MultiPrecisionSeriesAcceleration.dll</HintPath>
<HintPath>..\MultiPrecisionSeriesAcceleration\bin\Debug\net8.0\MultiPrecisionSeriesAcceleration.dll</HintPath>
</Reference>
</ItemGroup>

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
MultiPrecision Series Acceleration Implements

## Requirement
.NET 7.0
.NET 8.0
AVX2 suppoted CPU. (Intel:Haswell(2013)-, AMD:Excavator(2015)-)
[MultiPrecision](https://github.com/tk-yoshimura/MultiPrecision)

## Install

Expand Down

0 comments on commit 3724116

Please sign in to comment.