Skip to content

Commit 0d47bfc

Browse files
committed
Version bump to 1.4.0
+ Also remove my debugging net7
1 parent 7964906 commit 0d47bfc

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

Example/Example.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="glfw-net" Version="3.3.1" />
12-
<PackageReference Include="tdvk" Version="1.3.2" />
12+
<PackageReference Include="tdvk" Version="1.4.0" />
1313
</ItemGroup>
1414

1515
</Project>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TdVk Vulkan Bindings for .NET
22

3-
This repository contains cross-platform low-level bindings for the [Vulkan](https://www.khronos.org/vulkan/) graphics and compute API and its extensions. It is a fork of the [`vk` nuget package](https://github.com/mellinoe/vk) which has compatibility problems, only supports Vulkan 1.0, doesn't provide support for any Vulkan extensions, is only built for .NET 5.0 and .NET Standard 1.4 and hasn't been updated for 2 years.
3+
This repository contains cross-platform low-level bindings for the [Vulkan](https://www.khronos.org/vulkan/) graphics and compute API and its extensions. It is a fork of the [`vk` nuget package](https://github.com/mellinoe/vk) which has compatibility problems, only supports Vulkan 1.0, doesn't provide support for any Vulkan extensions, doesn't provider support for [instance and device dispatch](https://github.com/KhronosGroup/Vulkan-Loader/blob/main/docs/LoaderApplicationInterface.md#best-application-performance-setup), is only built for .NET 5.0 and .NET Standard 1.4 and hasn't been updated for 2 years.
44

55
These bindings differ from many other .NET bindings in that they are low-level and unsafe. There is no attempt made to provide a higher-level abstraction on top of Vulkan. This means you must be very careful with usages of the API. On the other hand, it means that you can simply and easily translate from the many C++ examples available on the web.
66

Vulkan/Vulkan.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
6-
<!-- <TargetFrameworks>netstandard1.4;netstandard2.1;netcoreapp3.1;net471;net5.0;net6.0;net7.0;</TargetFrameworks> -->
5+
<TargetFrameworks>netstandard1.4;netstandard2.1;netcoreapp3.1;net471;net5.0;net6.0;net7.0;</TargetFrameworks>
76
<AssemblyName>Vulkan</AssemblyName>
87
<AssemblyVersion>2.0.0</AssemblyVersion>
98
<RootNamespace>Vulkan</RootNamespace>

package/TdVk.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata>
44
<id>TdVk</id>
5-
<version>1.3.2</version>
5+
<version>1.4.0</version>
66
<authors>Tacodiva, Eric Mellino</authors>
77
<description>Cross-platform low-level bindings for the Vulkan 1.3 graphics and compute API and its extensions.</description>
88

0 commit comments

Comments
 (0)