mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-22 13:44:31 +00:00
22 lines
793 B
XML
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>
|