Files
LegacyWeaveLoader/WeaveLoader.Core/WeaveLoader.Core.csproj
2026-03-10 17:45:25 -05:00

22 lines
793 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RootNamespace>WeaveLoader.Core</RootNamespace>
<AssemblyName>WeaveLoader.Core</AssemblyName>
<Description>WeaveLoader core runtime - mod discovery and lifecycle management</Description>
<Version>1.0.0</Version>
<OutputPath>..\build</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\WeaveLoader.API\WeaveLoader.API.csproj" />
</ItemGroup>
</Project>