master
Liza 2024-03-29 15:21:04 +01:00
parent 0371be9580
commit 9c32ed69a7
Signed by: liza
GPG Key ID: 7199F8D727D55F67
4 changed files with 11 additions and 4 deletions

View File

@ -11,7 +11,7 @@ using FFXIVClientStructs.FFXIV.Client.Game;
namespace RetainerShutUp;
public class Plogon : IDalamudPlugin
public sealed class Plogon : IDalamudPlugin
{
private readonly IChatGui _chatGui;
private readonly IClientState _clientState;

View File

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<TargetFramework>net8.0-windows</TargetFramework>
<Version>1.0</Version>
<LangVersion>11.0</LangVersion>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>

View File

@ -1,7 +1,7 @@
{
"version": 1,
"dependencies": {
"net7.0-windows7.0": {
"net8.0-windows7.0": {
"DalamudPackager": {
"type": "Direct",
"requested": "[2.1.12, )",

7
global.json Normal file
View File

@ -0,0 +1,7 @@
{
"sdk": {
"version": "8.0.0",
"rollForward": "latestMajor",
"allowPrerelease": false
}
}