|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <Project Sdk="Microsoft.NET.Sdk"> |
3 | | - <PropertyGroup> |
4 | | - <Authors>NightmareXIV</Authors> |
5 | | - <Version>2.2.0.0</Version> |
6 | | - <Configurations>Debug;Release;DebugNoForms;ReleaseNoForms</Configurations> |
7 | | - </PropertyGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <Authors>NightmareXIV</Authors> |
| 5 | + <Version>2.2.0.1</Version> |
| 6 | + <Configurations>Debug;Release;DebugForms;ReleaseForms</Configurations> |
| 7 | + </PropertyGroup> |
8 | 8 |
|
9 | | - <PropertyGroup> |
10 | | - <TargetFramework>net8.0-windows</TargetFramework> |
11 | | - <Platforms>x64</Platforms> |
12 | | - <LangVersion>preview</LangVersion> |
13 | | - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
14 | | - <ProduceReferenceAssembly>false</ProduceReferenceAssembly> |
15 | | - <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> |
16 | | - <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
17 | | - <OutputPath>bin\$(Configuration)\</OutputPath> |
18 | | - <NoWarn>CS1591;CA1401;CS0649;CS8632;CS0414;CS0169</NoWarn> |
19 | | - <RestorePackagesWithLockFile>true</RestorePackagesWithLockFile> |
20 | | - <Optimize>True</Optimize> |
21 | | - <IsTrimmable>false</IsTrimmable> |
22 | | - <Nullable>enable</Nullable> |
23 | | - </PropertyGroup> |
| 9 | + <PropertyGroup> |
| 10 | + <TargetFramework>net8.0-windows</TargetFramework> |
| 11 | + <Platforms>x64</Platforms> |
| 12 | + <LangVersion>preview</LangVersion> |
| 13 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 14 | + <ProduceReferenceAssembly>false</ProduceReferenceAssembly> |
| 15 | + <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> |
| 16 | + <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
| 17 | + <OutputPath>bin\$(Configuration)\</OutputPath> |
| 18 | + <NoWarn>CS1591;CA1401;CS0649;CS8632;CS0414;CS0169</NoWarn> |
| 19 | + <RestorePackagesWithLockFile>true</RestorePackagesWithLockFile> |
| 20 | + <Optimize>True</Optimize> |
| 21 | + <IsTrimmable>false</IsTrimmable> |
| 22 | + <Nullable>enable</Nullable> |
| 23 | + </PropertyGroup> |
24 | 24 |
|
25 | | - <PropertyGroup Condition="'$(Configuration)' == 'Debug' or '$(Configuration)' == 'Release'"> |
| 25 | + <PropertyGroup Condition="'$(Configuration)' == 'DebugForms' or '$(Configuration)' == 'ReleaseForms'"> |
26 | 26 | <UseWindowsForms>true</UseWindowsForms> |
27 | 27 | <EnableWindowsTargeting>true</EnableWindowsTargeting> |
28 | 28 | </PropertyGroup> |
29 | 29 |
|
30 | | - <PropertyGroup Label="Documentation"> |
31 | | - <DocumentationFile></DocumentationFile> |
32 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
33 | | - </PropertyGroup> |
34 | | - |
35 | | - <PropertyGroup> |
36 | | - <DalamudLibPath>$(appdata)\xivlauncher\Addon\Hooks\dev\</DalamudLibPath> |
37 | | - </PropertyGroup> |
38 | | - |
39 | | - <PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'"> |
40 | | - <DalamudLibPath>$(DALAMUD_HOME)/</DalamudLibPath> |
41 | | - <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> |
42 | | - </PropertyGroup> |
| 30 | + <PropertyGroup Label="Documentation"> |
| 31 | + <DocumentationFile></DocumentationFile> |
| 32 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 33 | + </PropertyGroup> |
| 34 | + |
| 35 | + <PropertyGroup> |
| 36 | + <DalamudLibPath>$(appdata)\xivlauncher\Addon\Hooks\dev\</DalamudLibPath> |
| 37 | + </PropertyGroup> |
| 38 | + |
| 39 | + <PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'"> |
| 40 | + <DalamudLibPath>$(DALAMUD_HOME)/</DalamudLibPath> |
| 41 | + <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> |
| 42 | + </PropertyGroup> |
43 | 43 |
|
44 | | - <PropertyGroup> |
45 | | - <LangVersion>preview</LangVersion> |
46 | | - </PropertyGroup> |
| 44 | + <PropertyGroup> |
| 45 | + <LangVersion>preview</LangVersion> |
| 46 | + </PropertyGroup> |
47 | 47 |
|
48 | | - <ItemGroup> |
49 | | - <None Include="..\..\.editorconfig" Link=".editorconfig" /> |
50 | | - </ItemGroup> |
| 48 | + <ItemGroup> |
| 49 | + <None Include="..\..\.editorconfig" Link=".editorconfig" /> |
| 50 | + </ItemGroup> |
51 | 51 |
|
52 | | - <ItemGroup> |
53 | | - <Reference Include="Newtonsoft.Json"> |
54 | | - <HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath> |
55 | | - <Private>False</Private> |
56 | | - </Reference> |
57 | | - <Reference Include="Dalamud"> |
58 | | - <HintPath>$(DalamudLibPath)Dalamud.dll</HintPath> |
59 | | - <Private>False</Private> |
60 | | - </Reference> |
61 | | - <Reference Include="Dalamud.Common"> |
62 | | - <HintPath>$(DalamudLibPath)Dalamud.Common.dll</HintPath> |
63 | | - <Private>False</Private> |
64 | | - </Reference> |
65 | | - <Reference Include="ImGui.NET"> |
66 | | - <HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath> |
67 | | - <Private>False</Private> |
68 | | - </Reference> |
69 | | - <Reference Include="ImGuiScene"> |
70 | | - <HintPath>$(DalamudLibPath)ImGuiScene.dll</HintPath> |
71 | | - <Private>False</Private> |
72 | | - </Reference> |
73 | | - <Reference Include="Lumina"> |
74 | | - <HintPath>$(DalamudLibPath)Lumina.dll</HintPath> |
75 | | - <Private>False</Private> |
76 | | - </Reference> |
77 | | - <Reference Include="Lumina.Excel"> |
78 | | - <HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath> |
79 | | - <Private>False</Private> |
80 | | - </Reference> |
81 | | - <Reference Include="FFXIVClientStructs"> |
82 | | - <HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath> |
83 | | - <Private>False</Private> |
84 | | - </Reference> |
85 | | - <Reference Include="PInvoke.User32"> |
86 | | - <HintPath>$(DalamudLibPath)PInvoke.User32.dll</HintPath> |
87 | | - <Private>False</Private> |
88 | | - </Reference> |
89 | | - <Reference Include="PInvoke.Windows.Core"> |
90 | | - <HintPath>$(DalamudLibPath)PInvoke.Windows.Core.dll</HintPath> |
91 | | - <Private>False</Private> |
92 | | - </Reference> |
93 | | - <Reference Include="SharpDX.Mathematics"> |
94 | | - <HintPath>$(DalamudLibPath)SharpDX.Mathematics.dll</HintPath> |
95 | | - <Private>False</Private> |
96 | | - </Reference> |
97 | | - <Reference Include="Reloaded.Hooks.Definitions"> |
98 | | - <HintPath>$(DalamudLibPath)Reloaded.Hooks.Definitions.dll</HintPath> |
99 | | - <Private>False</Private> |
100 | | - </Reference> |
101 | | - <Reference Include="Serilog"> |
102 | | - <HintPath>$(DalamudLibPath)Serilog.dll</HintPath> |
103 | | - <Private>False</Private> |
104 | | - </Reference> |
105 | | - </ItemGroup> |
| 52 | + <ItemGroup> |
| 53 | + <Reference Include="Newtonsoft.Json"> |
| 54 | + <HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath> |
| 55 | + <Private>False</Private> |
| 56 | + </Reference> |
| 57 | + <Reference Include="Dalamud"> |
| 58 | + <HintPath>$(DalamudLibPath)Dalamud.dll</HintPath> |
| 59 | + <Private>False</Private> |
| 60 | + </Reference> |
| 61 | + <Reference Include="Dalamud.Common"> |
| 62 | + <HintPath>$(DalamudLibPath)Dalamud.Common.dll</HintPath> |
| 63 | + <Private>False</Private> |
| 64 | + </Reference> |
| 65 | + <Reference Include="ImGui.NET"> |
| 66 | + <HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath> |
| 67 | + <Private>False</Private> |
| 68 | + </Reference> |
| 69 | + <Reference Include="ImGuiScene"> |
| 70 | + <HintPath>$(DalamudLibPath)ImGuiScene.dll</HintPath> |
| 71 | + <Private>False</Private> |
| 72 | + </Reference> |
| 73 | + <Reference Include="Lumina"> |
| 74 | + <HintPath>$(DalamudLibPath)Lumina.dll</HintPath> |
| 75 | + <Private>False</Private> |
| 76 | + </Reference> |
| 77 | + <Reference Include="Lumina.Excel"> |
| 78 | + <HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath> |
| 79 | + <Private>False</Private> |
| 80 | + </Reference> |
| 81 | + <Reference Include="FFXIVClientStructs"> |
| 82 | + <HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath> |
| 83 | + <Private>False</Private> |
| 84 | + </Reference> |
| 85 | + <Reference Include="PInvoke.User32"> |
| 86 | + <HintPath>$(DalamudLibPath)PInvoke.User32.dll</HintPath> |
| 87 | + <Private>False</Private> |
| 88 | + </Reference> |
| 89 | + <Reference Include="PInvoke.Windows.Core"> |
| 90 | + <HintPath>$(DalamudLibPath)PInvoke.Windows.Core.dll</HintPath> |
| 91 | + <Private>False</Private> |
| 92 | + </Reference> |
| 93 | + <Reference Include="SharpDX.Mathematics"> |
| 94 | + <HintPath>$(DalamudLibPath)SharpDX.Mathematics.dll</HintPath> |
| 95 | + <Private>False</Private> |
| 96 | + </Reference> |
| 97 | + <Reference Include="Reloaded.Hooks.Definitions"> |
| 98 | + <HintPath>$(DalamudLibPath)Reloaded.Hooks.Definitions.dll</HintPath> |
| 99 | + <Private>False</Private> |
| 100 | + </Reference> |
| 101 | + <Reference Include="Serilog"> |
| 102 | + <HintPath>$(DalamudLibPath)Serilog.dll</HintPath> |
| 103 | + <Private>False</Private> |
| 104 | + </Reference> |
| 105 | + </ItemGroup> |
106 | 106 | </Project> |
0 commit comments