-
Notifications
You must be signed in to change notification settings - Fork 7
/
open-sdk.csproj
32 lines (30 loc) · 1.02 KB
/
open-sdk.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
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<RootNamespace>open_sdk</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Folder Include="auth\" />
<Folder Include="common\" />
<Folder Include="common\constant\" />
<Folder Include="exception\" />
<Folder Include="api\" />
<Folder Include="core\" />
<Folder Include="token\" />
<Folder Include="utils\" />
<Folder Include="http\" />
<Folder Include="token\type\" />
<Folder Include="token\entry\" />
</ItemGroup>
<ItemGroup>
<Compile Remove="auth\EmptyInterface.cs" />
<Compile Remove="Properties\AssemblyInfo.cs" />
<Compile Remove="api\GeneralApiParamsObject.cs" />
<Compile Remove="api\IApiParamsObject.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="RestSharp" Version="106.6.9" />
</ItemGroup>
</Project>