inohara/Inohara.csproj.template

26 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-05-19 22:24:05 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<AssemblyName>Assembly-CSharp.Inohara.mm</AssemblyName>
<Company>7EVENDAYS⇔HOLIDAYS</Company>
<Description>Tachi exporter for mu3</Description>
<Version>1.0.0</Version>
<LangVersion>11.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<Platform>x64</Platform>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="UnityEngine.Modules" Version="5.6.4" IncludeAssets="compile" />
<Reference Include="UnityEngine.UI"><HintPath></HintPath></Reference>
<Reference Include="Mu3Assembly"><HintPath></HintPath></Reference>
</ItemGroup>
2024-05-20 17:25:56 +00:00
<Target Name="Dist" AfterTargets="Build">
<Copy SourceFiles="$(TargetDir)$(AssemblyName).dll" DestinationFolder="dist" />
<Copy SourceFiles="$(TargetDir)$(AssemblyName).dll" DestinationFolder="dist/BepInEx/monomod" />
<ZipDirectory SourceDirectory="dist/BepInEx" DestinationFile="dist/inohara.zip" Overwrite="true" />
</Target>
2024-05-19 22:24:05 +00:00
</Project>