Skip to content

Commit b5b26e2

Browse files
committed
NET8.0, Amethyst 1.3
1 parent 16512d0 commit b5b26e2

File tree

3 files changed

+16
-16
lines changed

3 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/[email protected]
2424

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

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

plugin_Relay/Properties/PublishProfiles/FolderProfile.pubxml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
77
<PropertyGroup>
88
<Configuration>Release</Configuration>
99
<Platform>x64</Platform>
10-
<PublishDir>bin\Release\net7.0\win10-x64\publish\</PublishDir>
10+
<PublishDir>bin\Release\net8.0\win-x64\publish\</PublishDir>
1111
<PublishProtocol>FileSystem</PublishProtocol>
1212
<_TargetId>Folder</_TargetId>
13-
<TargetFramework>net7.0</TargetFramework>
14-
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
13+
<TargetFramework>net8.0</TargetFramework>
14+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
1515
<SelfContained>true</SelfContained>
1616
<PublishSingleFile>false</PublishSingleFile>
1717
<PublishReadyToRun>true</PublishReadyToRun>

plugin_Relay/plugin_Relay.csproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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.22621.0</TargetPlatformVersion>
66
<TargetPlatformIdentifier>Windows</TargetPlatformIdentifier>
77
<RootNamespace>plugin_Relay</RootNamespace>
8-
<RuntimeIdentifiers>win10-x64</RuntimeIdentifiers>
8+
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
99
<Platforms>x64</Platforms>
1010
<UseWinUI>true</UseWinUI>
1111
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
@@ -24,17 +24,17 @@
2424
</ItemGroup>
2525

2626
<ItemGroup>
27-
<PackageReference Include="Amethyst.Plugins.Contract" Version="0.3.35" />
28-
<PackageReference Include="MemoryPack" Version="1.10.0" />
29-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
30-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
27+
<PackageReference Include="Amethyst.Plugins.Contract" Version="1.3.0" />
28+
<PackageReference Include="MemoryPack" Version="1.21.4" />
29+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.6" />
30+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.6" />
3131
<PackageReference Include="Stl.Generators" Version="6.8.11" />
3232
<PackageReference Include="Stl.Rpc" Version="6.8.11" />
3333
<PackageReference Include="Stl.Rpc.Server" Version="6.8.11" />
34-
<PackageReference Include="System.ComponentModel.Composition" Version="9.0.0" />
35-
<PackageReference Include="System.ComponentModel.Composition.Registration" Version="9.0.0" />
36-
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240627000" />
37-
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" />
34+
<PackageReference Include="System.ComponentModel.Composition" Version="9.0.6" />
35+
<PackageReference Include="System.ComponentModel.Composition.Registration" Version="9.0.6" />
36+
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250606001" />
37+
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.4188" />
3838
</ItemGroup>
3939

4040
<ItemGroup>

0 commit comments

Comments
 (0)