forked from Caraxi/SimpleTweaksPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleTweaksPlugin.csproj
More file actions
86 lines (86 loc) · 3.71 KB
/
SimpleTweaksPlugin.csproj
File metadata and controls
86 lines (86 loc) · 3.71 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Target">
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net5.0-windows</TargetFramework>
<LangVersion>preview</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Label="Build">
<OutputType>Library</OutputType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendPlatformToOutputPath>false</AppendPlatformToOutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Label="Feature">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>1.6.0.4</Version>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AssemblyName>SimpleTweaksPlugin</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Compile Remove="lib\**" />
<Compile Remove="Publish\**" />
<EmbeddedResource Remove="lib\**" />
<EmbeddedResource Remove="Publish\**" />
<None Remove="lib\**" />
<None Remove="Publish\**" />
<Compile Remove="FFXIVClientInterface\**" />
<EmbeddedResource Remove="FFXIVClientInterface\**" />
<None Remove="FFXIVClientInterface\**" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<Compile Remove="Tweaks\Secret\**" />
<Compile Remove="Tweaks\SecretTweaks.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Numerics.Vectors" Version="4.1.3.0" />
<PackageReference Include="DalamudPackager" Version="2.1.2" />
<PackageReference Include="ILRepack" Version="2.1.0-beta1" GeneratePathProperty="true" />
</ItemGroup>
<Target Name="ILRepack" AfterTargets="PostBuildEvent">
<ItemGroup>
<InputAssemblies Include="$(TargetPath)" />
<InputAssemblies Include="$(TargetDir)*.dll" Exclude="$(TargetPath)" />
</ItemGroup>
<Exec Command="$(PkgILRepack)\tools\ILRepack.exe /lib:$(AppData)\XIVLauncher\addon\Hooks\dev /out:$(TargetDir)..\$(Configuration).ILMerge\$(TargetFileName) @(InputAssemblies, ' ')" />
</Target>
<ItemGroup>
<ProjectReference Include="FFXIVClientInterface\FFXIVClientInterface.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Dalamud">
<Private>false</Private>
<HintPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
</Reference>
<Reference Include="FFXIVClientStructs">
<Private>true</Private>
<HintPath>$(SolutionDir)\lib\FFXIVClientStructs\bin\$(ConfigurationName)\FFXIVClientStructs.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Newtonsoft.Json">
<Private>false</Private>
<HintPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="ImGui.NET">
<Private>false</Private>
<HintPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev\ImGui.NET.dll</HintPath>
</Reference>
<Reference Include="ImGuiScene">
<Private>false</Private>
<HintPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev\ImGuiScene.dll</HintPath>
</Reference>
<Reference Include="Lumina">
<Private>false</Private>
<HintPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev\Lumina.dll</HintPath>
</Reference>
<Reference Include="Lumina.Excel">
<Private>false</Private>
<HintPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev\Lumina.Excel.dll</HintPath>
</Reference>
</ItemGroup>
</Project>