fix(project): added bundle support and added to .gitignore

This commit is contained in:
Yui
2025-11-03 15:59:17 -03:00
parent 61f688a40a
commit a408ee7c9d
2 changed files with 13 additions and 2 deletions

4
.gitignore vendored
View File

@@ -2,4 +2,6 @@ bin/
obj/ obj/
/packages/ /packages/
riderModule.iml riderModule.iml
/_ReSharper.Caches/ /_ReSharper.Caches/
bundles.json
bundles/

View File

@@ -10,5 +10,14 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="SPTarkov.Server.Core" Version="4.0.3" /> <PackageReference Include="SPTarkov.Server.Core" Version="4.0.3" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Content Include="bundles\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Update="bundles.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project> </Project>