27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
<!-- default settings for nearly all projects -->
|
|
<PropertyGroup>
|
|
<LangVersion>12</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<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>
|