Skip to content

Commit 53aa52f

Browse files
committed
update latest version to 2024.0.0
1 parent f350c40 commit 53aa52f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

build/00-common.linq

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static void DotNetRun(string args) => Run("dotnet", args.Dump(), Encoding.GetEnc
2121
static void Run(string exe, string args, Encoding encoding) => Util.Cmd(exe, args, encoding);
2222
static ProjectVersion[] Projects = new[]
2323
{
24-
new ProjectVersion("Sdcb.OpenVINO", "0.6.3"),
24+
new ProjectVersion("Sdcb.OpenVINO", "0.6.4"),
2525
new ProjectVersion("Sdcb.OpenVINO.Extensions.OpenCvSharp4", "0.6.1"),
2626
new ProjectVersion("Sdcb.OpenVINO.PaddleOCR", "0.6.3"),
2727
new ProjectVersion("Sdcb.OpenVINO.PaddleOCR.Models.Online", "0.6.2"),

src/Sdcb.OpenVINO/Natives/OpenVINOLibraryLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private static IntPtr OpenVINOImportResolver(string libraryName, Assembly assemb
6161
{
6262
if (libraryName == Dll)
6363
{
64-
string[] allowedVersions = new[] { "2330", "2320", "2310" };
64+
string[] allowedVersions = new[] { "2400", "2330", "2320", "2310" };
6565
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
6666
{
6767
return LoadWithDeps(assembly, searchPath, new LibDeps("openvino_c.dll", new string[]

src/Sdcb.OpenVINO/Sdcb.OpenVINO.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<PackageReference Include="PolySharp" Version="1.13.2">
33+
<PackageReference Include="PolySharp" Version="1.14.1">
3434
<PrivateAssets>all</PrivateAssets>
3535
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3636
</PackageReference>
3737
<PackageReference Include="System.Memory" Version="4.5.5" Condition="'$(TargetFramework)' != 'net5'" />
3838
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" Condition="'$(TargetFramework)' != 'net5'" />
39-
<PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net461'"/>
39+
<PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net461'" />
4040
</ItemGroup>
4141

4242
</Project>

0 commit comments

Comments
 (0)