2023-07-22 11:35:30 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-05-20 21:31:31 +00:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<LangVersion>10.0</LangVersion>
|
2023-09-02 02:25:43 +00:00
|
|
|
<VersionPrefix>0.10.1</VersionPrefix>
|
2023-06-08 04:17:41 +00:00
|
|
|
<PackageIcon>Icon.png</PackageIcon>
|
2023-05-20 21:31:31 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-07-21 15:15:30 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Infrastructures\**" />
|
|
|
|
|
<EmbeddedResource Remove="Infrastructures\**" />
|
|
|
|
|
<None Remove="Infrastructures\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-06-08 04:17:41 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="..\..\..\arts\Icon.png">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-27 01:58:31 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
2023-08-07 10:21:31 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" />
|
2023-06-11 15:22:48 +00:00
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
2023-08-07 10:21:31 +00:00
|
|
|
<PackageReference Include="System.Text.Json" Version="7.0.3" />
|
2023-05-27 01:58:31 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-20 21:31:31 +00:00
|
|
|
</Project>
|