-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudscribe.Syndication.Web.csproj
More file actions
38 lines (32 loc) · 1.49 KB
/
cloudscribe.Syndication.Web.csproj
File metadata and controls
38 lines (32 loc) · 1.49 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
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>asp.netcore mvc controller for rss feeds</Description>
<Version>10.0.0</Version>
<TargetFramework>net10.0</TargetFramework>
<Authors>Joe Audette</Authors>
<PackageTags>cloudscribe;syndication;rss;atom;feed</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/cloudscribe/cloudscribe.Syndication</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Syndication.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\cloudscribe.Syndication\cloudscribe.Syndication.csproj" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<None Include="buildTransitive\cloudscribe.Syndication.Web.targets" Pack="true" PackagePath="buildTransitive/cloudscribe.Syndication.Web.targets" />
<None Include="buildTransitive\rss-style.xsl" Pack="true" PackagePath="buildTransitive/" />
<None Include="buildTransitive\rss.css" Pack="true" PackagePath="buildTransitive/" />
</ItemGroup>
</Project>