84 lines
3.7 KiB
XML
84 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Authors></Authors>
|
|
<Company></Company>
|
|
<Version>0.1.8.0</Version>
|
|
<Description></Description>
|
|
<Copyright></Copyright>
|
|
<PackageProjectUrl>https://github.com/Penumbra-Sync/client</PackageProjectUrl>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0-windows7.0</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<CopyLocalLockfileAssemblies>true</CopyLocalLockfileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DalamudPackager" Version="2.1.7" />
|
|
<PackageReference Include="lz4net" Version="1.0.15.93" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="6.0.6" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.17" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\Penumbra\Penumbra.GameData\Penumbra.GameData.csproj" />
|
|
<ProjectReference Include="..\..\server\MareSynchronosServer\MareSynchronos.API\MareSynchronos.API.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="FFXIVClientStructs">
|
|
<HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="Newtonsoft.Json">
|
|
<HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="Dalamud">
|
|
<HintPath>$(DalamudLibPath)Dalamud.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="ImGui.NET">
|
|
<HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="ImGuiScene">
|
|
<HintPath>$(DalamudLibPath)ImGuiScene.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="Lumina">
|
|
<HintPath>$(DalamudLibPath)Lumina.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="Lumina.Excel">
|
|
<HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="FileCache.db">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="images\icon.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\alpine-x64
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\linux-arm
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\linux-arm64
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\linux-armel
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\linux-mips64
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\linux-musl-x64
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\linux-x64
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\linux-x86
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\osx-x64
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\win-arm
rmdir /S /Q $(ProjectDir)$(OutDir)runtimes\win-arm64
if $(ConfigurationName) == Debug (
del /Q $(ProjectDir)$(OutDir)Mare.7z
"C:\Program Files\7-zip\7z.exe" a $(ProjectDir)$(OutDir)Mare.7z $(ProjectDir)$(OutDir)*
)" />
|
|
</Target>
|
|
|
|
</Project>
|