Skip to content

Commit 63a782b

Browse files
committed
Managed owoTrackVR handler
1 parent 85cceb2 commit 63a782b

File tree

8 files changed

+842
-229
lines changed

8 files changed

+842
-229
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,8 @@ jobs:
1616
with:
1717
dotnet-version: '7.0.x'
1818

19-
- name: Add MSBuild to PATH
20-
uses: microsoft/[email protected]
21-
22-
- name: Setup NuGet
23-
uses: nuget/setup-nuget@v1
24-
with:
25-
nuget-api-key: ${{ secrets.NuGetAPIKey }}
26-
nuget-version: latest
27-
28-
- name: Prepare WinRT projection files
29-
run: |
30-
nuget restore
31-
msbuild DeviceHandler /restore /p:Platform=x64 /p:PlatformTarget=x64 /p:Configuration=Release /p:RuntimeIdentifier=win-x64 /t:Rebuild
32-
3319
- name: Restore and build (publish)
34-
run: msbuild plugin_owoTrackVR /restore /p:Platform=x64 /p:PlatformTarget=x64 /p:Configuration=Release /p:RuntimeIdentifier=win-x64 /t:Publish /p:PublishProfile=plugin_owoTrackVR\Properties\PublishProfiles\FolderProfile.pubxml
20+
run: dotnet publish --configuration Release /p:PublishProfile=plugin_owoTrackVR\Properties\PublishProfiles\FolderProfile.pubxml
3521

3622
- name: Pack published files
3723
run: |

DeviceHandler/vendor/owoTrackVR/UDPDeviceQuatServer.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ void UDPDeviceQuatServer::send_heartbeat()
2626
}
2727
}
2828

29-
3029
void UDPDeviceQuatServer::send_bytebuffer(ByteBuffer& b)
3130
{
3231
auto buff_c = static_cast<uint8_t*>(malloc(b.size()));

plugin_owoTrackVR.sln

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ VisualStudioVersion = 17.5.33103.201
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "plugin_owoTrackVR", "plugin_owoTrackVR\plugin_owoTrackVR.csproj", "{3C5DB9DE-D479-4160-815D-7B664F6AC8EF}"
77
EndProject
8-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DeviceHandler", "DeviceHandler\DeviceHandler.vcxproj", "{A52CC78D-B179-4C78-8677-1876504405A4}"
9-
EndProject
108
Global
119
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1210
Debug|Any CPU = Debug|Any CPU
@@ -41,20 +39,6 @@ Global
4139
{3C5DB9DE-D479-4160-815D-7B664F6AC8EF}.Release|x64.Build.0 = Release|x64
4240
{3C5DB9DE-D479-4160-815D-7B664F6AC8EF}.Release|x86.ActiveCfg = Release|x64
4341
{3C5DB9DE-D479-4160-815D-7B664F6AC8EF}.Release|x86.Build.0 = Release|x64
44-
{A52CC78D-B179-4C78-8677-1876504405A4}.Debug|Any CPU.ActiveCfg = Debug|x64
45-
{A52CC78D-B179-4C78-8677-1876504405A4}.Debug|Any CPU.Build.0 = Debug|x64
46-
{A52CC78D-B179-4C78-8677-1876504405A4}.Debug|ARM.ActiveCfg = Debug|x64
47-
{A52CC78D-B179-4C78-8677-1876504405A4}.Debug|ARM64.ActiveCfg = Debug|x64
48-
{A52CC78D-B179-4C78-8677-1876504405A4}.Debug|x64.ActiveCfg = Debug|x64
49-
{A52CC78D-B179-4C78-8677-1876504405A4}.Debug|x64.Build.0 = Debug|x64
50-
{A52CC78D-B179-4C78-8677-1876504405A4}.Debug|x86.ActiveCfg = Debug|x64
51-
{A52CC78D-B179-4C78-8677-1876504405A4}.Release|Any CPU.ActiveCfg = Release|x64
52-
{A52CC78D-B179-4C78-8677-1876504405A4}.Release|Any CPU.Build.0 = Release|x64
53-
{A52CC78D-B179-4C78-8677-1876504405A4}.Release|ARM.ActiveCfg = Release|x64
54-
{A52CC78D-B179-4C78-8677-1876504405A4}.Release|ARM64.ActiveCfg = Release|x64
55-
{A52CC78D-B179-4C78-8677-1876504405A4}.Release|x64.ActiveCfg = Release|x64
56-
{A52CC78D-B179-4C78-8677-1876504405A4}.Release|x64.Build.0 = Release|x64
57-
{A52CC78D-B179-4C78-8677-1876504405A4}.Release|x86.ActiveCfg = Release|x64
5842
EndGlobalSection
5943
GlobalSection(SolutionProperties) = preSolution
6044
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)