mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2025-12-08 20:53:28 +08:00
51 lines
2.2 KiB
XML
51 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<BepInExPluginGuid>org.soardev.uxassist</BepInExPluginGuid>
|
|
<Description>DSP MOD - UXAssist</Description>
|
|
<Version>1.0.5</Version>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<LangVersion>latest</LangVersion>
|
|
<PackageId>UXAssist</PackageId>
|
|
<RootNamespace>UXAssist</RootNamespace>
|
|
<RestoreAdditionalProjectSources>https://nuget.bepinex.dev/v3/index.json</RestoreAdditionalProjectSources>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BepInEx.Core" Version="5.*" />
|
|
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*" />
|
|
<!--<PackageReference Include="DysonSphereProgram.GameLibs" Version="*-r.*" />-->
|
|
<PackageReference Include="UnityEngine.Modules" Version="2018.4.12" IncludeAssets="compile" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Assembly-CSharp">
|
|
<HintPath>..\GameAssembly\Assembly-CSharp.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Unity.TextMeshPro">
|
|
<HintPath>..\GameAssembly\Unity.TextMeshPro.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.Networking">
|
|
<HintPath>..\GameAssembly\UnityEngine.Networking.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.SpatialTracking">
|
|
<HintPath>..\GameAssembly\UnityEngine.SpatialTracking.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.Timeline">
|
|
<HintPath>..\GameAssembly\UnityEngine.Timeline.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.UI">
|
|
<HintPath>..\GameAssembly\UnityEngine.UI.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="del /F /Q package\$(ProjectName)-$(Version).zip
zip -9 -j package/$(ProjectName)-$(Version).zip $(TargetPath) package/icon.png package/manifest.json README.md" />
|
|
</Target>
|
|
</Project>
|