71 lines
3.2 KiB
XML
71 lines
3.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release-BepInEx6' ">
|
|
<Optimize Condition=" '$(Optimize)' == '' ">true</Optimize>
|
|
<DefineConstants>TRACE;TAIKO_IL2CPP</DefineConstants>
|
|
<Optimize>true</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release-BepInEx5' ">
|
|
<Optimize Condition=" '$(Optimize)' == '' ">true</Optimize>
|
|
<DefineConstants>TRACE;TAIKO_MONO;</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug-BepInEx5' ">
|
|
<DebugSymbols Condition=" '$(DebugSymbols)' == '' ">true</DebugSymbols>
|
|
<Optimize Condition=" '$(Optimize)' == '' ">false</Optimize>
|
|
<DefineConstants>TRACE;TAIKO_MONO;</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug-BepInEx6' ">
|
|
<DebugSymbols Condition=" '$(DebugSymbols)' == '' ">true</DebugSymbols>
|
|
<Optimize Condition=" '$(Optimize)' == '' ">false</Optimize>
|
|
<DefineConstants>TRACE;TAIKO_IL2CPP;</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<LangVersion>default</LangVersion>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
<Configurations>Release-BepInEx6;Release-BepInEx5;Debug-BepInEx6;Debug-BepInEx5</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="References" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="SonicAudioLib, Version=1.0.11.0, Culture=neutral, PublicKeyToken=null">
|
|
<HintPath>References\SonicAudioLib.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Costura.Fody" Version="5.7.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive; compile</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Fody" Version="6.6.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive; compile</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="NAudio.Core" Version="2.0.0" />
|
|
<PackageReference Include="NAudio.Vorbis" Version="1.5.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="VGAudio" Version="2.2.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\TakoTako.Common\TakoTako.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuildCopy" AfterTargets="PostBuildEvent">
|
|
<Copy SourceFiles="$(ProjectDir)..\TakoTako\Executables\tja2bin.exe" DestinationFolder="$(TargetDir)" SkipUnchangedFiles="true" />
|
|
<Copy SourceFiles="$(TargetDir)TJAConvert.exe" DestinationFolder="$(ProjectDir)..\TakoTako\Executables" SkipUnchangedFiles="true" />
|
|
</Target>
|
|
</Project>
|