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.Core.csproj
More file actions
34 lines (30 loc) · 1.63 KB
/
ChickenAPI.Core.csproj
File metadata and controls
34 lines (30 loc) · 1.63 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
<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>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="4.9.2" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="NLog" Version="4.5.11" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Reflection.Emit.ILGeneration">
<HintPath>C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.Emit.ILGeneration.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Emit.Lightweight">
<HintPath>C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.Emit.Lightweight.dll</HintPath>
</Reference>
</ItemGroup>
</Project>