forked from dotnet-foundation/website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Generator.csproj
28 lines (23 loc) · 899 Bytes
/
Generator.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyName>DotnetFoundationWeb</AssemblyName>
<RootNamespace>DotnetFoundationWeb</RootNamespace>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.23" />
<PackageReference Include="Microsoft.SyndicationFeed.ReaderWriter" Version="1.0.2" />
<PackageReference Include="Statiq.Web" Version="1.0.0-beta.8" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="input\assets\corporate-sponsors\" />
</ItemGroup>
<!--
<ItemGroup>
<ProjectReference Include="..\..\..\statiqdev\Statiq.Web\src\Statiq.Web\Statiq.Web.csproj" />
</ItemGroup>
-->
</Project>