-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Slight polishing in support of Orbbec Femto devices. Preparations to …
…release new version.
- Loading branch information
Showing
18 changed files
with
156 additions
and
17 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<AssemblyVersion>1.4.14.0</AssemblyVersion> | ||
<FileVersion>1.4.14.0</FileVersion> | ||
<!--DefineConstants>ORBBECSDK_K4A_WRAPPER</DefineConstants--> | ||
<AssemblyVersion>1.4.15.0</AssemblyVersion> | ||
<FileVersion>1.4.15.0</FileVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Devices)' == 'Femto'"> | ||
<DefineConstants>ORBBECSDK_K4A_WRAPPER</DefineConstants> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
@ECHO OFF | ||
|
||
set MSBUILD_PATH="%ProgramFiles%\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\MsBuild.exe" | ||
|
||
cd .. | ||
|
||
package\nuget.exe restore | ||
IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
|
||
%MSBUILD_PATH% K4AdotNet.sln /t:Clean /p:Configuration=Release /p:Platform="Any CPU" /p:Devices=Femto /v:m | ||
IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
|
||
%MSBUILD_PATH% K4AdotNet.sln /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" /p:Devices=Femto /v:m | ||
IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
|
||
cd package | ||
|
||
nuget.exe pack k4adotnet-femto.nuspec | ||
IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
|
||
echo DONE! | ||
exit /B 0 | ||
|
||
:ERROR | ||
echo FAIL! | ||
pause | ||
exit /B -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>K4AdotNet-Femto</id> | ||
<version>1.4.15</version> | ||
<authors>bibigone,baSSiLL</authors> | ||
<owners></owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="expression">MIT</license> | ||
<projectUrl>https://github.com/bibigone/k4a.net/blob/master/README.md</projectUrl> | ||
<iconUrl>https://github.com/bibigone/k4a.net/raw/master/K4AdotNet-Femto-64.png</iconUrl> | ||
<description>Version of K4A.Net (K4AdotNet) library that works with Orbbec Femto Bolt and Mega depth sensors via Orbbec SDK K4A Wrapper. It includes sensor API, recording and playback API, body tracking API. The API is exactly the same as in original K4A.Net (K4AdotNet) library. Compatible with .NET Standard 2.0 and .Net Framework 4.6.1 and later, .NET 6 and later. All required binaries from Orbbec SDK K4A Wrapper (win x64) are included. Samples (WPF, .NET Core and Unity) can be found in the source repository.</description> | ||
<releaseNotes>See https://github.com/bibigone/k4a.net/releases</releaseNotes> | ||
<copyright>Copyright (c) 2019-2024</copyright> | ||
<tags>Orbbec Femto Bolt Mega Kinect Azure .NET K4A Depth Sensor Body Tracking BodyTracking SDK Wrapper</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.6.1" /> | ||
<group targetFramework="net6.0" /> | ||
<group targetFramework=".NETStandard2.0" /> | ||
</dependencies> | ||
<frameworkAssemblies> | ||
<frameworkAssembly assemblyName="mscorlib" targetFramework=".NETFramework4.6.1" /> | ||
<frameworkAssembly assemblyName="System.Core" targetFramework=".NETFramework4.6.1" /> | ||
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.6.1" /> | ||
</frameworkAssemblies> | ||
</metadata> | ||
|
||
<files> | ||
<file src="k4adotnet-femto.targets" target="build\k4adotnet-femto.targets" /> | ||
|
||
<file src="..\K4AdotNet\bin\Release\net461\K4AdotNet.dll" target="lib\net461\K4AdotNet.dll" /> | ||
<file src="..\K4AdotNet\bin\Release\net461\K4AdotNet.pdb" target="lib\net461\K4AdotNet.pdb" /> | ||
<file src="..\K4AdotNet\bin\Release\net461\K4AdotNet.xml" target="lib\net461\K4AdotNet.xml" /> | ||
|
||
<file src="..\K4AdotNet\bin\Release\net6.0\K4AdotNet.dll" target="lib\net6.0\K4AdotNet.dll" /> | ||
<file src="..\K4AdotNet\bin\Release\net6.0\K4AdotNet.pdb" target="lib\net6.0\K4AdotNet.pdb" /> | ||
<file src="..\K4AdotNet\bin\Release\net6.0\K4AdotNet.xml" target="lib\net6.0\K4AdotNet.xml" /> | ||
|
||
<file src="..\K4AdotNet\bin\Release\netstandard2.0\K4AdotNet.dll" target="lib\netstandard2.0\K4AdotNet.dll" /> | ||
<file src="..\K4AdotNet\bin\Release\netstandard2.0\K4AdotNet.pdb" target="lib\netstandard2.0\K4AdotNet.pdb" /> | ||
<file src="..\K4AdotNet\bin\Release\netstandard2.0\K4AdotNet.xml" target="lib\netstandard2.0\K4AdotNet.xml" /> | ||
|
||
<file src="..\externals\OrbbecSDK-K4A-Wrapper\win-x64\depthengine_2_0.dll" target="runtimes\win-x64\native\depthengine_2_0.dll" /> | ||
<file src="..\externals\OrbbecSDK-K4A-Wrapper\win-x64\k4a.dll" target="runtimes\win-x64\native\k4a.dll" /> | ||
<file src="..\externals\OrbbecSDK-K4A-Wrapper\win-x64\k4arecord.dll" target="runtimes\win-x64\native\k4arecord.dll" /> | ||
<file src="..\externals\OrbbecSDK-K4A-Wrapper\win-x64\OrbbecSDK.dll" target="runtimes\win-x64\native\OrbbecSDK.dll" /> | ||
|
||
<file src="..\externals\Microsoft.VC141.CRT\x64\msvcp140.dll" target="runtimes\win-x64\native\msvcp140.dll" /> | ||
<file src="..\externals\Microsoft.VC141.CRT\x64\vcomp140.dll" target="runtimes\win-x64\native\vcomp140.dll" /> | ||
<file src="..\externals\Microsoft.VC141.CRT\x64\vcruntime140.dll" target="runtimes\win-x64\native\vcruntime140.dll" /> | ||
<file src="..\externals\Microsoft.VC141.CRT\x64\vcruntime140_1.dll" target="runtimes\win-x64\native\vcruntime140_1.dll" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup Condition="'$(Platform)' == 'x64' OR '$(Platform)' == 'AnyCPU'"> | ||
<Content Include="$(MSBuildThisFileDirectory)../runtimes/win-x64/native/*.dll"> | ||
<Link>%(FileName)%(Extension)</Link> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<Visible>False</Visible> | ||
</Content> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters