forked from bokmako/Shop-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Shop.csproj
24 lines (24 loc) · 919 Bytes
/
Shop.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyTitle>Shop</AssemblyTitle>
<Product>Shop</Product>
<Copyright>Copyright © 2013</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<PlatformTarget>x64</PlatformTarget>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
<PackageReference Include="TShock" Version="5.2.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Wolfje.Plugins.SEconomy">
<HintPath>..\Dependencies\Wolfje.Plugins.SEconomy.dll</HintPath>
</Reference>
</ItemGroup>
</Project>