Skip to content

Commit 6a7e4d3

Browse files
committed
NET8.0, Amethyst 1.3
1 parent d392b2d commit 6a7e4d3

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: microsoft/setup-msbuild@v1.1
3838

3939
- name: Restore and build (publish)
40-
run: msbuild plugin_Kinect360 /restore /p:Platform=x64 /p:PlatformTarget=x64 /p:Configuration=Release /p:RuntimeIdentifier=win10-x64 /t:Publish /p:PublishProfile=plugin_Kinect360\Properties\PublishProfiles\FolderProfile.pubxml
40+
run: msbuild plugin_Kinect360 /restore /p:Platform=x64 /p:PlatformTarget=x64 /p:Configuration=Release /p:RuntimeIdentifier=win-x64 /t:Publish /p:PublishProfile=plugin_Kinect360\Properties\PublishProfiles\FolderProfile.pubxml
4141

4242
- name: Pack published files
4343
run: |

KinectHandler/KinectHandler.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<Keyword>NetCoreCProj</Keyword>
1818
<RootNamespace>KinectHandler</RootNamespace>
1919
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
20-
<TargetFramework>net7.0</TargetFramework>
21-
<RuntimeIdentifiers>win10-x64</RuntimeIdentifiers>
20+
<TargetFramework>net8.0</TargetFramework>
21+
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
2222
</PropertyGroup>
2323
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2424
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
@@ -95,13 +95,13 @@
9595
</ItemGroup>
9696
<ItemGroup>
9797
<PackageReference Include="Amethyst.Plugins.Contract">
98-
<Version>0.3.35</Version>
98+
<Version>1.3.0</Version>
9999
</PackageReference>
100100
<PackageReference Include="System.ComponentModel">
101101
<Version>4.3.0</Version>
102102
</PackageReference>
103103
<PackageReference Include="System.ComponentModel.Composition">
104-
<Version>9.0.0</Version>
104+
<Version>9.0.6</Version>
105105
</PackageReference>
106106
</ItemGroup>
107107
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

plugin_Kinect360/Properties/PublishProfiles/FolderProfile.pubxml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
99
<PublishDir>bin\Release\Publish</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
1111
<_TargetId>Folder</_TargetId>
12-
<TargetFramework>net7.0</TargetFramework>
13-
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
12+
<TargetFramework>net8.0</TargetFramework>
13+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
1414
<SelfContained>true</SelfContained>
1515
<PublishSingleFile>false</PublishSingleFile>
1616
<PublishReadyToRun>true</PublishReadyToRun>

plugin_Kinect360/plugin_Kinect360.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
55
<TargetPlatformVersion>10.0.26100.0</TargetPlatformVersion>
66
<TargetPlatformIdentifier>Windows</TargetPlatformIdentifier>
77
<RootNamespace>plugin_Kinect360</RootNamespace>
8-
<RuntimeIdentifiers>win10-x64</RuntimeIdentifiers>
8+
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
99
<PublishTrimmed>false</PublishTrimmed>
1010
<Platforms>x64</Platforms>
1111
<UseWinUI>true</UseWinUI>
1212
<LangVersion>latest</LangVersion>
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Amethyst.Plugins.Contract" Version="0.3.35" />
16+
<PackageReference Include="Amethyst.Plugins.Contract" Version="1.3.0" />
1717
<PackageReference Include="NAudio.Sdl2" Version="2.2.6" />
18-
<PackageReference Include="RestSharp" Version="108.0.3" />
19-
<PackageReference Include="System.ComponentModel.Composition" Version="9.0.0" />
20-
<PackageReference Include="System.ComponentModel.Composition.Registration" Version="9.0.0" />
21-
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240627000" />
22-
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" />
18+
<PackageReference Include="RestSharp" Version="112.1.0" />
19+
<PackageReference Include="System.ComponentModel.Composition" Version="9.0.6" />
20+
<PackageReference Include="System.ComponentModel.Composition.Registration" Version="9.0.6" />
21+
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250606001" />
22+
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.4188" />
2323
</ItemGroup>
2424

2525
<ItemGroup>

0 commit comments

Comments
 (0)