-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathecnu-openapi-sdk-csharp.csproj
35 lines (29 loc) · 1.2 KB
/
ecnu-openapi-sdk-csharp.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
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>ecnu_openapi_sdk_csharp</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Authors>ECNU</Authors>
<Company>ECNU</Company>
<PackageId>Ecnu.OpenApi.Sdk</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>提供接入ECNU数据开发帮助,开发者仅需简单的配置即可获得ECNU授权的数据。</Description>
<RepositoryUrl>https://github.com/ECNU/ecnu-openapi-sdk-csharp</RepositoryUrl>
<AssemblyVersion>1.0.2</AssemblyVersion>
<FileVersion>1.0.2</FileVersion>
<Version>1.0.2</Version>
<Title>提供接入ECNU数据开发帮助,开发者仅需简单的配置即可获得ECNU授权的数据。</Title>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.109" />
</ItemGroup>
<ItemGroup>
<None Update="readme.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>