This repository was archived by the owner on Feb 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathChickenAPI.Game.csproj
More file actions
40 lines (35 loc) · 1.75 KB
/
ChickenAPI.Game.csproj
File metadata and controls
40 lines (35 loc) · 1.75 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Blowa</Authors>
<Copyright>2019</Copyright>
<PackageProjectUrl>https://github.com/BlowaXD/ChickenAPI</PackageProjectUrl>
<RepositoryUrl>https://github.com/BlowaXD/ChickenAPI.git</RepositoryUrl>
<PackageIconUrl>https://raw.githubusercontent.com/BlowaXD/ChickenAPI/master/docs/_media/logo_512.png</PackageIconUrl>
<PackageTags>nostale, chickenapi, nostale private server source, nostale emulator</PackageTags>
<Version>0.2.0</Version>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>ChickenAPI's Core abstraction (IoC, Logging, Utils, EventPipelines, Delegates..)</Description>
<RepositoryType>git</RepositoryType>
<PackageLicenseUrl>https://github.com/BlowaXD/ChickenAPI/blob/master/LICENSE</PackageLicenseUrl>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Accounts\**" />
<EmbeddedResource Remove="Accounts\**" />
<None Remove="Accounts\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="4.9.2" />
<PackageReference Include="NLog" Version="4.5.11" />
<PackageReference Include="NLog.Config" Version="4.5.11" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ChickenAPI.Core\ChickenAPI.Core.csproj" />
<ProjectReference Include="..\ChickenAPI.Data\ChickenAPI.Data.csproj" />
<ProjectReference Include="..\ChickenAPI.Enums\ChickenAPI.Enums.csproj" />
<ProjectReference Include="..\ChickenAPI.Packets\ChickenAPI.Packets.csproj" />
</ItemGroup>
</Project>