no longer copy dumpLib as build will

This commit is contained in:
CWX 2024-08-12 12:16:58 +01:00
parent 217dc63c33
commit aaa44f1867
2 changed files with 11 additions and 4 deletions

Binary file not shown.

View File

@ -7,14 +7,21 @@
<LangVersion>latestmajor</LangVersion> <LangVersion>latestmajor</LangVersion>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<DestinationFolder>..\Assets\Dumper</DestinationFolder>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup> </ItemGroup>
<Target Name="CopyDll" AfterTargets="Build"> <ItemGroup>
<Exec Command="copy $(TargetPath) $(DestinationFolder)" /> <None Update="DUMPDATA\botReqData.json">
</Target> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="DUMPDATA\config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="DUMPDATA\raidSettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project> </Project>