-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAstraSkins.csproj
More file actions
26 lines (24 loc) · 1.19 KB
/
Copy pathAstraSkins.csproj
File metadata and controls
26 lines (24 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>AstraSkins</AssemblyName>
<RootNamespace>AstraSkins</RootNamespace>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.369" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.9" />
<!-- Pinned to the patched SQLitePCLRaw line; Microsoft.Data.Sqlite still pulls 2.1.11 (GHSA-2m69-gcr7-jv3q). -->
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.3" />
<PackageReference Include="MySqlConnector" Version="2.5.0" />
</ItemGroup>
<ItemGroup>
<None Include="data\**\*.json" CopyToOutputDirectory="PreserveNewest" />
<None Include="lang\**\*.json" CopyToOutputDirectory="PreserveNewest" />
<None Include="gamedata\**\*.json" CopyToOutputDirectory="PreserveNewest" />
<None Include="schema\**\*.sql" CopyToOutputDirectory="PreserveNewest" />
<None Include="tools\**\*" CopyToOutputDirectory="Never" />
</ItemGroup>
</Project>