Files
simapi-net/YYApi.csproj
T

43 lines
1.6 KiB
XML
Raw Permalink Normal View History

2019-12-23 16:32:06 +08:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
2019-12-23 16:32:06 +08:00
<OutputType>Library</OutputType>
<PackOnBuild>true</PackOnBuild>
2020-02-03 02:54:02 +08:00
<Version>0.2.3</Version>
2019-12-23 16:32:06 +08:00
<Authors>xRain@YYTech</Authors>
<Description>AspNetCore一个方便的API文档,捕获异常,统一输入输出的API类库</Description>
<PackageId>YY-Tech.YYApi</PackageId>
<IsPackable>true</IsPackable>
2019-12-27 17:28:14 +08:00
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSymbols>true</IncludeSymbols>
2019-12-23 16:32:06 +08:00
</PropertyGroup>
<ItemGroup>
<Folder Include="Helpers\" />
<Folder Include="Communications\" />
<Folder Include="Controllers\" />
2020-01-17 12:40:22 +08:00
<Folder Include="JobService\" />
2020-02-04 16:51:15 +08:00
<Folder Include="Middlewares\" />
<Folder Include="Attributes\" />
<Folder Include="Exceptions\" />
2019-12-23 16:32:06 +08:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="5.5.1" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="5.5.1" />
<PackageReference Include="HangFire.Core" Version="1.7.11" />
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.11" />
2020-01-17 12:40:22 +08:00
<PackageReference Include="Hangfire.Console" Version="1.4.2" />
<PackageReference Include="Hangfire.Redis.StackExchange" Version="1.8.4" />
2019-12-23 16:32:06 +08:00
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<DotNetNamingPolicy ResourceNamePolicy="FileFormatDefault" DirectoryNamespaceAssociation="PrefixedHierarchical" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>