-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMirror.csproj
30 lines (30 loc) · 989 Bytes
/
Mirror.csproj
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
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="EOS\**" />
<EmbeddedResource Remove="EOS\**" />
<None Remove="EOS\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BCrypt-Core" Version="2.0.0" />
<PackageReference Include="Cryptography.ECDSA.Secp256K1" Version="1.1.2" />
<PackageReference Include="gtanetwork.api" Version="0.3.5" />
<PackageReference Include="LiteDB" Version="4.1.4" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="EosSharp">
<HintPath>EosSharp.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="Data\Outfits\FemaleTopCombinations.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Data\Outfits\MaleTopCombinations.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>