1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net5.0</TargetFramework>
- <Version>1.8.0</Version>
- <Authors>xiaoxue</Authors>
- <Description>中台Admin工具库</Description>
- <PackageLicenseExpression>MIT</PackageLicenseExpression>
- <PackageProjectUrl>https://github.com/zhontai/My.Admin</PackageProjectUrl>
- <RepositoryUrl>https://github.com/zhontai/My.Admin</RepositoryUrl>
- <PackageTags>ZhonTai Admin;WebApi</PackageTags>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DocumentationFile>..\My.Admin.HttpApi.Host\My.Admin.Tools.xml</DocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="System.Drawing.Common" Version="5.0.2" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\My.Admin.Common\My.Admin.Common.csproj" />
- </ItemGroup>
- </Project>
|