forked from Elfocrash/L2dotNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathL2dotNET.csproj
More file actions
44 lines (36 loc) · 1.64 KB
/
Copy pathL2dotNET.csproj
File metadata and controls
44 lines (36 loc) · 1.64 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
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<ApplicationIcon />
<StartupObject />
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>..\bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Mapster" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="System.CodeDom" Version="4.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\L2dotNET.DataContracts.Shared\L2dotNET.DataContracts.Shared.csproj" />
<ProjectReference Include="..\L2dotNET.Models\L2dotNET.DataContracts.csproj" />
<ProjectReference Include="..\L2dotNET.Repositories\L2dotNET.Repositories.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="L2Crypt">
<HintPath>..\..\..\..\GitHub\L2dotNET\src\L2dotNET.LoginService\bin\Debug\L2Crypt.dll</HintPath>
</Reference>
<Reference Include="Org.BouncyCastle">
<HintPath>..\..\..\..\GitHub\L2dotNET\src\L2dotNET.LoginService\lib\Org.BouncyCastle.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="..\L2dotNET.Shared\L2dotNET.Shared.projitems" Label="Shared" />
</Project>