8e624e509a
Versions-bump from 0.1.0 to 0.1.1 in csproj. Extend Anvil.yaml changelog with the v0.1.1 block; the v0.1.0 entry stays below as release history. Add repo.json (Custom-Repo manifest, AssemblyVersion 0.1.1.0, download links pointing at the v0.1.1 release tag) and CHANGELOG.md (root-level history file with v0.1.1 hotfix notes and the v0.1.0 foundation block). This is the scaffolding commit for the Module 01 spec-sync hotfix cycle. The five spec-edit commits (A1, A2, A3, A4, A5) follow.
64 lines
2.8 KiB
XML
64 lines
2.8 KiB
XML
<Project Sdk="Dalamud.NET.Sdk/15.0.0">
|
|
<PropertyGroup>
|
|
<Version>0.1.1</Version>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
<!-- Forge-wide Platform pin: solution-build defaults respect this; the
|
|
Forgeimizer v0.1.0 cycle showed that omitting it lets CI silently
|
|
fall back to AnyCPU and writes outputs into the wrong subtree. -->
|
|
<Platforms>x64</Platforms>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<!-- Lock package versions so a casual restore does not surprise-bump
|
|
transitive dependencies between cycles. -->
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
<AssemblyName>Anvil</AssemblyName>
|
|
<RootNamespace>Anvil</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Generic Host DI container, mirroring the HellionChat v1.5.0 pattern
|
|
(Lightless-Sync stack pin at 10.0.7). Closed ranges keep major
|
|
bumps from sneaking in through lock-file regeneration. -->
|
|
<PackageReference
|
|
Include="Microsoft.Extensions.DependencyInjection"
|
|
Version="[10.0.7, 11.0.0)"
|
|
/>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="[10.0.7, 11.0.0)" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="[10.0.7, 11.0.0)" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="[10.0.7, 11.0.0)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Build-suite (Anvil.Tests in the local Hellion Build test repo)
|
|
needs InternalsVisibleTo to reach the LuminaRecipeAdapter and
|
|
mechanic-table classes without making them public. -->
|
|
<InternalsVisibleTo Include="Anvil.Tests" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Localization\AnvilStrings.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>AnvilStrings.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Localization\AnvilStrings.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>AnvilStrings.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<!-- Plugin icon + screenshots: SDK 15 default packager picks these up via
|
|
images/* and the icon_url / image_urls fields in Anvil.yaml. Do NOT
|
|
add a DalamudPackager.targets override - the SDK 15 default handles
|
|
icon + images correctly (lesson from HellionChat v0.5.2 burn). -->
|
|
<ItemGroup>
|
|
<None Include="images\**">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|