forked from siteserver/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSSCMS.csproj
More file actions
30 lines (26 loc) · 1.13 KB
/
SSCMS.csproj
File metadata and controls
30 lines (26 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>latest</LangVersion>
<PackageId>SSCMS</PackageId>
<Version>7.0.0-preview7</Version>
<Authors>SiteServer CMS</Authors>
<Company>SiteServer CMS</Company>
<PackageDescription>SSCMS .NET Core abstractions for developers.</PackageDescription>
<Copyright>Copyright © SSCMS</Copyright>
<RepositoryUrl>https://github.com/siteserver/cms/</RepositoryUrl>
<PackageIconUrl>https://www.siteserver.cn/assets/images/favicon.png</PackageIconUrl>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>SSCMS;SiteServer;CMS;Plugin</PackageTags>
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Include="logo.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Datory" Version="1.0.20" />
</ItemGroup>
</Project>