Skip to content

Commit

Permalink
merge dev fix version conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
FracturedCode committed Mar 6, 2022
2 parents 9552522 + 9693fa3 commit c8bf467
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion OpenCL.NetCore.Tests/OpenCL.NetCore.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
13 changes: 9 additions & 4 deletions OpenCL.NetCore/OpenCL.NetCore.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Gabe C</Authors>
<Authors>FracturedCode,Ananth B</Authors>
<Description>.NET bindings for OpenCL that are easy-to-use and true to the original API. There is no OOP abstraction, nor will there ever be. OpenCL.Net is meant to be small, fast (with as little explicit marshaling as possible) and .NET friendly at the same time.</Description>
<PackageLicenseFile>LICENSE-EPL1.0.txt</PackageLicenseFile>
<RepositoryUrl>https://github.com/FracturedCodes/OpenCL.NetCore</RepositoryUrl>
<Version>1.1</Version>
<Version>1.2.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -19,6 +20,10 @@
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="FodyWeavers.xsd" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ little explicit marshaling as possible) and .NET friendly at the same time.
OpenCL.NetCore is a fork of [OpenCL.Net by Ananth B](https://github.com/dgsantana/OpenCL.NET/). The main purpose of this project is to modernize OpenCL.Net by giving it proper VS projects and MSTests in .NET Core.
It still needs some testing and debugging.

### .NET 5 is here
### .NET 6 is here
Well, the new naming convention of .NET certainly has me questioning my decision to name
this project OpenCL.NetCore. For now, I will keep the name despite the project being updated for .NET 5.

Expand Down

0 comments on commit c8bf467

Please sign in to comment.