-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (21 loc) · 955 Bytes
/
Directory.Build.props
File metadata and controls
22 lines (21 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Authors>Cnblogs</Authors>
<Description>An unofficial dotnet DashScope SDK maintained by cnblogs.</Description>
<PackageProjectUrl>https://github.com/cnblogs/DashScopeSDK</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/cnblogs/DashScopeSDK</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cnblogs.CodeQuality" Version="1.8.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>