fix ipc probably add individual syncshells and shit don't show shared data from paused people change text fix reverting Use InputText/Combo hybrids for MCDO ACLs (#81) * Use InputText/Combo hybrids for MCDO ACLs * Hybrid combo factoring, filtering, ordering, caching fix selecting latest created data on creation rename close to direct pairs add toggle to keep nearby poses active constantly fix gpose hanging fix potential cancelaltion on updateshareddata
79 lines
3.0 KiB
XML
79 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Dalamud.NET.Sdk/12.0.2">
|
|
<PropertyGroup>
|
|
<AssemblyName>LoporritSync</AssemblyName>
|
|
<Version>1.9.0</Version>
|
|
<PackageProjectUrl>https://github.com/loporrit/MareClient/</PackageProjectUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="PlayerData\Export\**" />
|
|
<EmbeddedResource Remove="PlayerData\Export\**" />
|
|
<None Remove="PlayerData\Export\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Downloader" Version="3.3.4" />
|
|
<PackageReference Include="K4os.Compression.LZ4.Legacy" Version="1.3.8" />
|
|
<PackageReference Include="K4os.Compression.LZ4.Streams" Version="1.3.8" />
|
|
<PackageReference Include="Meziantou.Analyzer" Version="2.0.189">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.3" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.7" />
|
|
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.7.0.110445">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.7.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="Exists('..\Penumbra.Api\Penumbra.Api.csproj')">
|
|
<ProjectReference Include="..\Penumbra.Api\Penumbra.Api.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="!Exists('..\Penumbra.Api\Penumbra.Api.csproj')">
|
|
<PackageReference Include="Penumbra.Api" Version="5.6.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="Exists('..\Glamourer.Api\Glamourer.Api.csproj')">
|
|
<ProjectReference Include="..\Glamourer.Api\Glamourer.Api.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="!Exists('..\Glamourer.Api\Glamourer.Api.csproj')">
|
|
<PackageReference Include="Glamourer.Api" Version="2.4.1" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<SourceRevisionId>build$([System.DateTime]::UtcNow.ToString("yyyy-MM-ddTHH:mm:ss:fffZ"))</SourceRevisionId>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MareAPI\MareSynchronosAPI\MareSynchronos.API.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="CheapLoc">
|
|
<HintPath>$(DalamudLibPath)CheapLoc.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="images\icon.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<EmbeddedResource Include="Localization\de.json" />
|
|
<EmbeddedResource Include="Localization\fr.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\.editorconfig" Link=".editorconfig" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|