Skip to content

Commit e2d7e32

Browse files
committed
NET8.0, Amethyst 1.3
1 parent 1257c84 commit e2d7e32

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
uses: microsoft/setup-msbuild@v1.1
2424

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

2828
- name: Pack published files
2929
run: |
30-
cd plugin_PSMoveService/bin/Release/net7.0/win10-x64/publish
30+
cd plugin_PSMoveService/bin/Release/net8.0/win-x64/publish
3131
7z a plugin_PSMoveService.zip *
3232
3333
- name: Upload plugin artifact
@@ -38,5 +38,5 @@ jobs:
3838
prerelease: true
3939
title: "plugin_PSMoveService Build Artifact"
4040
files: |
41-
./plugin_PSMoveService/bin/Release/net7.0/win10-x64/publish/plugin_PSMoveService.zip
41+
./plugin_PSMoveService/bin/Release/net8.0/win-x64/publish/plugin_PSMoveService.zip
4242
./external/manifest.json
Binary file not shown.
Binary file not shown.

plugin_PSMoveService/Properties/PublishProfiles/FolderProfile.pubxml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
66
<PropertyGroup>
77
<Configuration>Release</Configuration>
88
<Platform>x64</Platform>
9-
<PublishDir>bin\Release\net7.0\win10-x64\publish\</PublishDir>
9+
<PublishDir>bin\Release\net8.0\win-x64\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_PSMoveService/plugin_PSMoveService.csproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<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.22621.0</TargetPlatformVersion>
66
<TargetPlatformIdentifier>Windows</TargetPlatformIdentifier>
77
<RootNamespace>plugin_PSMoveService</RootNamespace>
8-
<RuntimeIdentifiers>win10-x64</RuntimeIdentifiers>
9-
<PublishTrimmed>true</PublishTrimmed>
8+
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
9+
<PublishTrimmed>false</PublishTrimmed>
1010
<Platforms>x64</Platforms>
1111
<UseWinUI>true</UseWinUI>
1212
<LangVersion>latest</LangVersion>
1313
</PropertyGroup>
1414

1515
<ItemGroup>
1616
<ProjectReference Include="../vendor/PSMS/PSMoveServiceExCAPI/PSMoveServiceExCAPI.vbproj" />
17-
<PackageReference Include="Amethyst.Plugins.Contract" Version="0.3.35" />
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" />
17+
<PackageReference Include="Amethyst.Plugins.Contract" Version="1.3.0" />
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)