-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathHttpApiCore.csproj
68 lines (59 loc) · 2.59 KB
/
HttpApiCore.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>3.2.4</Version>
<Description>HttpApiCore is a convinent framework to provide data by http, It can be the upgrating replacement for WebAPI. It supports aspnetcore v3.1.
HttpApiCore 是一种便利的提供数据服务接口的框架,可作为 WebAPI 的升级方案,此类库支持 aspnetcore v3.1.
</Description>
<Authors>surfsky</Authors>
<Copyright>MIT</Copyright>
<PackageProjectUrl>https://github.com/surfsky/HttpApi</PackageProjectUrl>
<RepositoryUrl>https://github.com/surfsky/HttpApi</RepositoryUrl>
<PackageReleaseNotes>+ Add group property
+ app.UseHttpApi(options => ....)
+ Support DescritionAttribute to method
+ Parameter mismatch check
+ Friendly exception</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>3.2.4.0</AssemblyVersion>
<RepositoryType>git</RepositoryType>
<FileVersion>3.2.4.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>\\Mac\Home\Downloads\Dev\AppPlat\App.HttpApi\HttpApi-GitHub\NetCore\HttpApiCore\HttpApiCore.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Components\AuthHelper.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="Js\extTemplate.js" />
<None Remove="Js\jqTemplate.js" />
<None Remove="Js\json2.min.js" />
<None Remove="Js\jsTemplate.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Js\extTemplate.js" />
<EmbeddedResource Include="Js\jqTemplate.js" />
<EmbeddedResource Include="Js\json2.min.js" />
<EmbeddedResource Include="Js\jsTemplate.js" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="ZKWeb.System.Drawing" Version="4.0.1" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<Generator>ResXFileCodeGenerator</Generator>
</EmbeddedResource>
</ItemGroup>
</Project>