-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathRemindMe.csproj
76 lines (76 loc) · 3.4 KB
/
RemindMe.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Target">
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net5.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Label="Build">
<OutputType>Library</OutputType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>Full</DebugType>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
</PropertyGroup>
<PropertyGroup Label="Feature">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>1.1.0.0</Version>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AssemblyName>RemindMe</AssemblyName>
</PropertyGroup>
<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="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="Newtonsoft.Json">
<Private>false</Private>
<HintPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="JetBrains.Annotations">
<Private>false</Private>
<HintPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev\JetBrains.Annotations.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>
<PackageReference Include="ILRepack" Version="2.1.0-beta1" GeneratePathProperty="true" />
<PackageReference Include="DalamudPackager" Version="2.1.2" />
</ItemGroup>
<ItemGroup>
<Compile Remove="lib\**" />
<EmbeddedResource Remove="lib\**" />
<None Remove="lib\**" />
</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>
<Target Name="PackagePlugin" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
<DalamudPackager ProjectDir="$(ProjectDir)" OutputPath="$(OutputPath)..\$(Configuration).ILMerge" AssemblyName="$(AssemblyName)" MakeZip="true" />
</Target>
</Project>