|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.1;net471;net6.0;net7.0;net8.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>netstandard2.1;net471;net6.0;net8.0</TargetFrameworks> |
5 | 5 | <RootNamespace>DotMP</RootNamespace> |
6 | 6 | <PackageId>DotMP</PackageId> |
7 | | - <Version>2.0-pre1</Version> |
| 7 | + <Version>2.0-pre1.2</Version> |
8 | 8 | <Authors>Phillip Allen Lane,et al.</Authors> |
9 | 9 | <PackageDescription>A library for fork-join parallelism in .NET, with an OpenMP-like API.</PackageDescription> |
10 | 10 | <RepositoryUrl>https://github.com/computablee/DotMP</RepositoryUrl> |
11 | 11 | <PackageProjectUrl>https://computablee.github.io/DotMP/</PackageProjectUrl> |
12 | | - <Copyright>Copyright (c) Phillip Allen Lane 2023</Copyright> |
| 12 | + <Copyright>Copyright (c) Phillip Allen Lane 2023-2024</Copyright> |
13 | 13 | <PackageReadmeFile>ProcessedREADME.md</PackageReadmeFile> |
14 | 14 | <PackageTags>hpc,parallel,openmp,parallelization,high performance computing,threading</PackageTags> |
15 | 15 | <PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression> |
16 | | - <PackageReleaseNotes>Add IScheduler interface for user-defined schedulers and work-stealing scheduler. Better atomics support. Performance improvements and bug fixes. Explicit support for .NET 8.</PackageReleaseNotes> |
| 16 | + <PackageReleaseNotes>Add rudimentary GPU support and GPU API. Make breaking but beneficial API updates to several functions.</PackageReleaseNotes> |
17 | 17 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
18 | 18 | <IncludeSymbols>true</IncludeSymbols> |
| 19 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
19 | 20 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
20 | 21 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
21 | 22 | </PropertyGroup> |
|
0 commit comments