-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
SimpleTweaksPlugin.csproj
87 lines (87 loc) · 3.35 KB
/
SimpleTweaksPlugin.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Target">
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>preview</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Label="Build">
<NoWarn>CS8632,CS0649,CS0169</NoWarn>
<OutputType>Library</OutputType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendPlatformToOutputPath>false</AppendPlatformToOutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
<PropertyGroup Label="Feature">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>1.10.3.0</Version>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AssemblyName>SimpleTweaksPlugin</AssemblyName>
</PropertyGroup>
<ItemGroup>
<None Update="images\icon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TweakPreviews\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Decorations\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="DalamudPackager" Version="2.1.13" />
</ItemGroup>
<PropertyGroup>
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dalamud">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
</Reference>
<Reference Include="FFXIVClientStructs">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
</Reference>
<Reference Include="InteropGenerator.Runtime">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\InteropGenerator.Runtime.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="ImGui.NET">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
</Reference>
<Reference Include="ImGuiScene">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\ImGuiScene.dll</HintPath>
</Reference>
<Reference Include="Lumina">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
</Reference>
<Reference Include="Lumina.Excel">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
</Reference>
<Reference Include="JetBrains.Annotations">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\JetBrains.Annotations.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="Utility\FriendList" />
</ItemGroup>
</Project>