2025-11-08 14:03:17 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<DuckovPath>D:\steam\steamapps\common\Escape from Duckov</DuckovPath>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
|
<OutputPath>D:\steam\steamapps\common\Escape from Duckov\Duckov_Data\Mods\SceneView</OutputPath>
|
|
|
|
|
|
<GenerateDependencyFile>false</GenerateDependencyFile>
|
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2025-11-13 16:24:49 +08:00
|
|
|
|
<Reference Include="$(DuckovPath)\Duckov_Data\Managed\TeamSoda.*" Private="False"/>
|
|
|
|
|
|
<Reference Include="$(DuckovPath)\Duckov_Data\Managed\ItemStatsSystem.dll" Private="False"/>
|
|
|
|
|
|
<Reference Include="$(DuckovPath)\Duckov_Data\Managed\Unity*" Private="False"/>
|
|
|
|
|
|
<Reference Include="$(DuckovPath)\Duckov_Data\Managed\FMODUnity.dll" Private="False"/>
|
2025-11-08 14:03:17 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2025-11-13 16:24:49 +08:00
|
|
|
|
<PackageReference Include="Lib.Harmony" Version="2.4.1"/>
|
2025-11-08 14:03:17 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|