24 lines
932 B
XML
24 lines
932 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<OutputPath>..\..\Assemblies</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<!-- Debug configuration - with symbols for debugging -->
|
|
<DebugType>portable</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
<!-- Release configuration - no debug symbols -->
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
<DebugType>None</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<Optimize>true</Optimize>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.6.4566" />
|
|
<PackageReference Include="Lib.Harmony" Version="2.4.1" />
|
|
<PackageReference Include="StableDiffusionNet.Core" Version="1.1.2" />
|
|
</ItemGroup>
|
|
</Project>
|