mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Fixes various issues with projects referencing different versions of libraries, causing deployment issues if build order differs
79 lines
3.2 KiB
XML
79 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Target">
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Feature">
|
|
<InjectorVersion>5.2.4.6</InjectorVersion>
|
|
<Description>XIV Launcher addon injector</Description>
|
|
<AssemblyVersion>$(InjectorVersion)</AssemblyVersion>
|
|
<FileVersion>$(InjectorVersion)</FileVersion>
|
|
<Version>$(InjectorVersion)</Version>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Output">
|
|
<OutputType>Library</OutputType>
|
|
<OutputPath>..\bin\$(Configuration)\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Documentation">
|
|
<DocumentationFile></DocumentationFile>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Build">
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>portable</DebugType>
|
|
<Deterministic>true</Deterministic>
|
|
<Nullable>annotations</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Configuration">
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Warnings">
|
|
<NoWarn>IDE0003;IDE0044;IDE1006;CS1591;CS1701;CS1702</NoWarn>
|
|
<!-- IDE0003 - Name can be simplified -->
|
|
<!-- IDE1006 - Naming violation -->
|
|
<!-- CS1591 - Missing XML comment for publicly visible type or member -->
|
|
<!-- CS1701 - Runtime policy may be needed -->
|
|
<!-- CS1702 - Runtime policy may be needed -->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Iced" />
|
|
<PackageReference Include="JetBrains.Annotations" />
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
<PackageReference Include="Microsoft.Windows.CsWin32" />
|
|
<PackageReference Include="PeNet" />
|
|
<PackageReference Include="Reloaded.Memory" />
|
|
<PackageReference Include="Reloaded.Memory.Buffers" />
|
|
<PackageReference Include="Serilog" />
|
|
<PackageReference Include="Serilog.Sinks.Async" />
|
|
<PackageReference Include="Serilog.Sinks.Console" />
|
|
<PackageReference Include="Serilog.Sinks.File" />
|
|
<PackageReference Include="StyleCop.Analyzers">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\stylecop.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Dalamud.Common\Dalamud.Common.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|