Files
simapi-net/SimApi.csproj
T

41 lines
1.6 KiB
XML
Raw Normal View History

2019-12-23 16:32:06 +08:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2024-03-23 07:29:43 +08:00
<PropertyGroup>
<OutputType>Library</OutputType>
<PackOnBuild>true</PackOnBuild>
<Version>0.2.3</Version>
<Authors>xRain@SimcuTeam</Authors>
<Description>AspNetCore一个方便的API文档,捕获异常,统一输入输出的API类库</Description>
<PackageId>Simcu.SimApi</PackageId>
<IsPackable>true</IsPackable>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSymbols>true</IncludeSymbols>
<ReleaseVersion>5.0.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>5.0.2</PackageVersion>
<TargetFramework>net8.0</TargetFramework>
2024-07-26 08:11:21 +08:00
<Nullable>enable</Nullable>
2024-03-23 07:29:43 +08:00
</PropertyGroup>
2019-12-23 16:32:06 +08:00
2024-03-23 07:29:43 +08:00
<ItemGroup>
<Folder Include="Communications\"/>
<Folder Include="Exceptions\"/>
</ItemGroup>
<ItemGroup>
2024-07-10 03:30:09 +08:00
<PackageReference Include="Minio" Version="6.0.3" />
2024-07-26 05:03:28 +08:00
<PackageReference Include="MQTTnet" Version="4.3.6.1152" />
2024-08-19 03:39:35 +08:00
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.7.1" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.7.1" />
2024-03-23 07:29:43 +08:00
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<DotNetNamingPolicy ResourceNamePolicy="FileFormatDefault" DirectoryNamespaceAssociation="PrefixedHierarchical"/>
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
2019-12-23 16:32:06 +08:00
</Project>