2019-12-23 16:32:06 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<PackOnBuild>true</PackOnBuild>
|
2020-02-03 02:54:02 +08:00
|
|
|
<Version>0.2.3</Version>
|
2020-08-05 15:29:56 +08:00
|
|
|
<Authors>xRain@SimcuTeam</Authors>
|
2019-12-23 16:32:06 +08:00
|
|
|
<Description>AspNetCore一个方便的API文档,捕获异常,统一输入输出的API类库</Description>
|
2020-08-05 15:44:58 +08:00
|
|
|
<PackageId>Simcu.SimApi</PackageId>
|
2019-12-23 16:32:06 +08:00
|
|
|
<IsPackable>true</IsPackable>
|
2019-12-27 17:28:14 +08:00
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
2020-11-11 03:28:09 +08:00
|
|
|
<ReleaseVersion>5.0.0</ReleaseVersion>
|
2020-08-23 19:51:37 +08:00
|
|
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
2020-11-28 18:03:20 +08:00
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<PackageVersion>5.0.2</PackageVersion>
|
2024-03-23 07:10:17 +08:00
|
|
|
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
|
2019-12-23 16:32:06 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Helpers\" />
|
|
|
|
|
<Folder Include="Communications\" />
|
|
|
|
|
<Folder Include="Controllers\" />
|
2020-02-04 16:51:15 +08:00
|
|
|
<Folder Include="Middlewares\" />
|
|
|
|
|
<Folder Include="Exceptions\" />
|
2019-12-23 16:32:06 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2023-02-05 19:43:39 +08:00
|
|
|
<PackageReference Include="Minio" Version="4.0.7" />
|
2023-10-20 12:33:18 +08:00
|
|
|
<PackageReference Include="RabbitMQ.Client" Version="6.6.0" />
|
2023-02-05 19:43:39 +08:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.5.0" />
|
2019-12-23 16:32:06 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ProjectExtensions>
|
|
|
|
|
<MonoDevelop>
|
|
|
|
|
<Properties>
|
|
|
|
|
<Policies>
|
|
|
|
|
<DotNetNamingPolicy ResourceNamePolicy="FileFormatDefault" DirectoryNamespaceAssociation="PrefixedHierarchical" />
|
|
|
|
|
</Policies>
|
|
|
|
|
</Properties>
|
|
|
|
|
</MonoDevelop>
|
|
|
|
|
</ProjectExtensions>
|
|
|
|
|
</Project>
|