-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMacroChain.csproj
48 lines (48 loc) · 1.98 KB
/
MacroChain.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Target">
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
<RootNamespace>MacroChain</RootNamespace>
</PropertyGroup>
<PropertyGroup Label="Build">
<OutputType>Library</OutputType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>Full</DebugType>
</PropertyGroup>
<PropertyGroup Label="Feature">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>2.2.0.1</Version>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>MacroChain</AssemblyName>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<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>
</ItemGroup>
<ItemGroup>
<Compile Remove="lib\**" />
<EmbeddedResource Remove="lib\**" />
<None Remove="lib\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="11.0.0" />
</ItemGroup>
<Target Name="PackagePlugin" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
<DalamudPackager ProjectDir="$(ProjectDir)" OutputPath="$(OutputPath)" AssemblyName="$(AssemblyName)" MakeZip="true" />
</Target>
</Project>