mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-17 18:39:07 +00:00
Added a large set of new images for collectibles, keychains, and stickers in the website/img/skins directory. Updated multiple localization JSON files for agents, collectibles, keychains, music, skins, and stickers across various languages to reflect new content. Also updated music kit images and the WeaponPaints.csproj project file.
32 lines
974 B
XML
32 lines
974 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.361" />
|
|
<PackageReference Include="Dapper" Version="2.1.66" />
|
|
<PackageReference Include="MySqlConnector" Version="2.5.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.5-beta1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="lang\**\*.*" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="gamedata\*.*" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="MenuManagerApi">
|
|
<HintPath>3rd_party\MenuManagerApi.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|