2023-06-26 23:08:24 +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-06-19 18:32:06 +00:00
|
|
|
|
<VersionPrefix>0.5.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" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
|
2023-06-11 15:22:48 +00:00
|
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
2023-05-27 01:58:31 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-05-20 21:31:31 +00:00
|
|
|
|
</Project>
|