-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBlogML.Core.csproj
More file actions
21 lines (21 loc) · 926 Bytes
/
BlogML.Core.csproj
File metadata and controls
21 lines (21 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>BlogML.Core</PackageId>
<Version>1.0.0</Version>
<Authors>hmobius</Authors>
<Description>BlogML.Core is an update of the BlogML .NET project for.NET Standard 2.0. BlogML is an open format derived from XML to store and restore the content of a blog.</Description>
<PackageLicenseUrl>https://github.com/hmobius/BlogML.Core/blob/master/LICENSE</PackageLicenseUrl>
<ProjectUrl>https://github.com/hmobius/BlogML.Core</ProjectUrl>
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
<PackageTags>blog;import;export;blogml</PackageTags>
<Language>en-us</Language>
<Title>BlogML.Core</Title>
</PropertyGroup>
<ItemGroup>
<Content Remove="lib\blogml.xsd" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="lib\blogml.xsd" />
</ItemGroup>
</Project>