LLib/LLib.targets

28 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project>
<!-- default settings for nearly all projects -->
<PropertyGroup>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<Configurations>Debug;Release</Configurations> <!-- https://github.com/goatcorp/Dalamud.NET.Sdk/issues/2 -->
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>portable</DebugType>
<PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<ItemGroup>
<SourceLinkGiteaHost Include="git.carvel.li"/>
</ItemGroup>
<!-- fix dubious warnings and defaults for dalamud projects that only seem to be an issue after using Dalamud.NET.Sdk -->
<PropertyGroup>
<!-- no clue which bright ligth thought I don't want to see default items (e.g. .targets files, or the plugin manifest) -->
<EnableDefaultNoneItems>true</EnableDefaultNoneItems>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.Gitea" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>