Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ dotnet_diagnostic.RS0017.severity = error

# we should care more about this one day
dotnet_diagnostic.RS0041.severity = warning
dotnet_diagnostic.RS1042.severity = none

# public api warnings silk.net doesn't care about
dotnet_diagnostic.RS0026.severity = none # Don't add multiple public overloads with optional parameters
Expand Down
2 changes: 1 addition & 1 deletion build/submodules/ANGLE
Submodule ANGLE updated from ed97ad to ab6a82
2 changes: 1 addition & 1 deletion build/submodules/Assimp
Submodule Assimp updated 1014 files
2 changes: 1 addition & 1 deletion build/submodules/MoltenVK
Submodule MoltenVK updated 189 files
2 changes: 1 addition & 1 deletion build/submodules/SDL
Submodule SDL updated 1178 files
2 changes: 1 addition & 1 deletion build/submodules/SPIRV-Cross
Submodule SPIRV-Cross updated 459 files
2 changes: 1 addition & 1 deletion build/submodules/SPIRV-Headers
Submodule SPIRV-Headers updated 101 files
2 changes: 1 addition & 1 deletion build/submodules/SPIRV-Reflect
Submodule SPIRV-Reflect updated 167 files
2 changes: 1 addition & 1 deletion build/submodules/SPIRV-Tools
Submodule SPIRV-Tools updated 312 files
2 changes: 1 addition & 1 deletion build/submodules/SwiftShader
2 changes: 1 addition & 1 deletion build/submodules/Vulkan-Headers
Submodule Vulkan-Headers updated 70 files
+59 −10 .github/workflows/ci.yml
+2 −0 .gitignore
+6 −0 BUILD.gn
+85 −39 CMakeLists.txt
+64 −28 Makefile.release
+25 −23 include/vk_video/vulkan_video_codec_av1std.h
+1 −1 include/vk_video/vulkan_video_codec_av1std_decode.h
+143 −0 include/vk_video/vulkan_video_codec_av1std_encode.h
+9 −9 include/vk_video/vulkan_video_codec_h264std.h
+2 −2 include/vk_video/vulkan_video_codec_h264std_decode.h
+1 −1 include/vk_video/vulkan_video_codec_h264std_encode.h
+24 −24 include/vk_video/vulkan_video_codec_h265std.h
+2 −2 include/vk_video/vulkan_video_codec_h265std_decode.h
+1 −1 include/vk_video/vulkan_video_codec_h265std_encode.h
+151 −0 include/vk_video/vulkan_video_codec_vp9std.h
+68 −0 include/vk_video/vulkan_video_codec_vp9std_decode.h
+1 −1 include/vk_video/vulkan_video_codecs_common.h
+1 −1 include/vulkan/vk_platform.h
+5,397 −169 include/vulkan/vulkan.cppm
+5 −1 include/vulkan/vulkan.h
+11,476 −8,803 include/vulkan/vulkan.hpp
+7 −1 include/vulkan/vulkan_android.h
+151 −2 include/vulkan/vulkan_beta.h
+4,646 −1,031 include/vulkan/vulkan_core.h
+5 −1 include/vulkan/vulkan_directfb.h
+2,482 −733 include/vulkan/vulkan_enums.hpp
+1,128 −595 include/vulkan/vulkan_extension_inspection.hpp
+6,420 −4,443 include/vulkan/vulkan_format_traits.hpp
+21 −1 include/vulkan/vulkan_fuchsia.h
+18,746 −15,430 include/vulkan/vulkan_funcs.hpp
+3 −1 include/vulkan/vulkan_ggp.h
+10,119 −7,366 include/vulkan/vulkan_handles.hpp
+3,147 −561 include/vulkan/vulkan_hash.hpp
+41 −36 include/vulkan/vulkan_hpp_macros.hpp
+3 −1 include/vulkan/vulkan_ios.h
+3 −1 include/vulkan/vulkan_macos.h
+50 −1 include/vulkan/vulkan_metal.h
+51 −0 include/vulkan/vulkan_ohos.h
+13,759 −10,029 include/vulkan/vulkan_raii.hpp
+7 −1 include/vulkan/vulkan_screen.h
+247 −202 include/vulkan/vulkan_shared.hpp
+1,701 −464 include/vulkan/vulkan_static_assertions.hpp
+91,039 −64,305 include/vulkan/vulkan_structs.hpp
+6,300 −5,075 include/vulkan/vulkan_to_string.hpp
+3 −1 include/vulkan/vulkan_vi.h
+323 −0 include/vulkan/vulkan_video.cppm
+2,384 −571 include/vulkan/vulkan_video.hpp
+5 −1 include/vulkan/vulkan_wayland.h
+31 −1 include/vulkan/vulkan_win32.h
+5 −1 include/vulkan/vulkan_xcb.h
+5 −1 include/vulkan/vulkan_xlib.h
+5 −1 include/vulkan/vulkan_xlib_xrandr.h
+1 −1 registry/apiconventions.py
+1,190 −0 registry/base_generator.py
+48 −17 registry/cgenerator.py
+34 −33 registry/generator.py
+5 −5 registry/parse_dependency.py
+75 −10 registry/reg.py
+9 −10 registry/spec_tools/conventions.py
+1 −1 registry/spec_tools/util.py
+1 −1 registry/stripAPI.py
+36,115 −28,456 registry/validusage.json
+426 −109 registry/video.xml
+5,687 −2,274 registry/vk.xml
+6 −3 registry/vkconventions.py
+591 −0 registry/vulkan_object.py
+2 −2 tests/CMakeLists.txt
+21 −5 tests/integration/CMakeLists.txt
+13 −0 tests/vk_hpp.cpp
+13 −0 tests/vk_hpp_module.cpp
2 changes: 1 addition & 1 deletion build/submodules/Vulkan-Loader
Submodule Vulkan-Loader updated 161 files
2 changes: 1 addition & 1 deletion build/submodules/dawn
Submodule dawn updated from fed791 to b7198b
2 changes: 1 addition & 1 deletion build/submodules/dxvk
Submodule dxvk updated 440 files
2 changes: 1 addition & 1 deletion build/submodules/openal-soft
Submodule openal-soft updated 373 files
2 changes: 1 addition & 1 deletion build/submodules/shaderc
Submodule shaderc updated 40 files
+24 −0 CHANGES
+11 −1 CMakeLists.txt
+4 −4 DEPS
+8 −6 glslc/CMakeLists.txt
+2 −0 glslc/README.asciidoc
+14 −7 glslc/src/main.cc
+9 −7 glslc/test/CMakeLists.txt
+13 −2 glslc/test/option_target_env.py
+4 −2 glslc/test/parameter_tests.py
+2 −2 kokoro/android-release/build-docker.sh
+1 −1 kokoro/android-release/build.sh
+1 −1 kokoro/linux/build-docker.sh
+1 −1 kokoro/linux/build.sh
+1 −1 kokoro/linux/build_clang_asan.sh
+1 −1 kokoro/linux/build_clang_debug.sh
+1 −1 kokoro/linux/build_clang_release.sh
+1 −1 kokoro/linux/build_gcc_debug.sh
+1 −1 kokoro/linux/build_gcc_debug_exception.sh
+1 −1 kokoro/linux/build_gcc_release.sh
+1 −4 kokoro/linux/license_check.sh
+1 −1 kokoro/ndk-build/build-docker.sh
+1 −1 kokoro/ndk-build/build.sh
+8 −4 kokoro/windows/build.bat
+1 −1 kokoro/windows/build_2019_amd64_release.bat
+2 −2 kokoro/windows/build_2022_amd64_debug.bat
+23 −0 kokoro/windows/build_2022_amd64_release.bat
+1 −1 kokoro/windows/continuous_release_2019.cfg
+1 −1 kokoro/windows/presubmit_release_2019.cfg
+2 −2 kokoro/windows/vs2022_amd64_debug_continuous.cfg
+8 −2 kokoro/windows/vs2022_amd64_debug_presubmit.cfg
+22 −0 kokoro/windows/vs2022_amd64_release_continuous.cfg
+9 −7 kokoro/windows/vs2022_amd64_release_presubmit.cfg
+1 −0 libshaderc/include/shaderc/env.h
+15 −12 libshaderc/src/shaderc.cc
+100 −47 libshaderc/src/shaderc_cpp_test.cc
+94 −38 libshaderc/src/shaderc_test.cc
+14 −12 libshaderc_util/include/libshaderc_util/compiler.h
+14 −8 libshaderc_util/src/compiler.cc
+24 −16 libshaderc_util/src/compiler_test.cc
+2 −0 libshaderc_util/src/spirv_tools_wrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="StbImageSharp" Version="2.27.13" />
<PackageReference Include="StbImageSharp" Version="2.30.15" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="StbImageSharp" Version="2.27.13" />
<PackageReference Include="StbImageSharp" Version="2.30.15" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1"/>
<PackageReference Include="xunit" Version="2.4.2"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Silk.NET.BuildTools/Common/Functions/Type.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public int IndirectionLevels
public string ToString(bool allowFunctionPointers)
{
return (IsThis ? "this " : string.Empty) +
(IsIn ? "[RequiresLocation] in " : string.Empty) +
(IsIn ? "ref readonly " : string.Empty) +
(IsOut ? "out " : string.Empty) +
(IsByRef ? "ref " : string.Empty) +
(IsFunctionPointer && allowFunctionPointers && Name == "void"
Expand Down
12 changes: 6 additions & 6 deletions src/Core/Silk.NET.BuildTools/Silk.NET.BuildTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.59" />
<PackageReference Include="Humanizer.Core" Version="2.8.26" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.11.0" />
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="8.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.9.2164" />
<PackageReference Include="morelinq" Version="4.1.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.12.2" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="9.0.9" />
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.14.2075" />
<PackageReference Include="morelinq" Version="4.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="ClangSharp" Version="15.0.2" />
</ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions src/Core/Silk.NET.Core.Tests/Silk.NET.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
10 changes: 5 additions & 5 deletions src/Core/Silk.NET.Core/Silk.NET.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="9.0.0" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="9.0.9" />
<PackageReference Include="System.Memory" Version="4.6.3" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
<PackageReference Include="System.Numerics.Vectors" Version="4.6.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
</ItemGroup>

<Import Project="..\..\..\build\props\common.props" />
Expand Down
4 changes: 2 additions & 2 deletions src/Core/Silk.NET.SilkTouch/Silk.NET.SilkTouch.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<Compile Include="..\Silk.NET.Core\Attributes\UnmanagedTypeAttribute.cs" />
<Compile Include="..\Silk.NET.Core\Attributes\InjectAttribute.cs" />

<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.11.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />

<!-- Package the generator in the analyzer directory of the nuget package -->
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.10" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Lab/Experiments/BlankWindow/BlankWindow.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Lab/Experiments/CoreRTTest/CoreRTTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<!-- Some tutorials need ImageSharp -->
<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.7" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.11" />
</ItemGroup>

<!-- Reference Silk.NET -->
Expand Down Expand Up @@ -53,7 +53,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="8.0.0-*" />
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="9.0.9" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Lab/Experiments/D3D12Triangle/D3D12Triangle.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Ultz.Extensions.Logging" Version="2.0.1" />
<PackageReference Include="Ultz.Extensions.Logging" Version="4.1.4" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="9.0.9" />
<ProjectReference Include="..\..\..\..\Core\Silk.NET.Core\Silk.NET.Core.csproj" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="System.Memory" Version="4.6.3" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
<PackageReference Include="System.Numerics.Vectors" Version="4.6.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.7" />
<PackageReference Include="SkiaSharp" Version="3.119.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.10" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.2" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/Maths/Silk.NET.Maths.Tests/Silk.NET.Maths.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/Maths/Silk.NET.Maths/Silk.NET.Maths.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' != 'net5.0'">
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Buffers" Version="4.5.1" />
<PackageReference Include="System.Buffers" Version="4.6.1" />
</ItemGroup>

<Import Project="..\..\..\..\build\props\bindings.props" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
4 changes: 2 additions & 2 deletions src/OpenAL/Silk.NET.OpenAL/Silk.NET.OpenAL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Buffers" Version="4.5.1" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="System.Buffers" Version="4.6.1" />
<PackageReference Include="System.Numerics.Vectors" Version="4.6.1" />
</ItemGroup>

<Import Project="..\..\..\build\props\bindings.props" />
Expand Down
Loading
Loading