Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<PackageVersion Include="OneOf.SourceGenerator" Version="3.0.271" />
<PackageVersion Include="PdfPig" Version="0.1.11" />
<PackageVersion Include="PlantUml.Net" Version="1.4.80" />
<PackageVersion Include="Spectre.Console" Version="0.52.0" />
<PackageVersion Include="Spectre.Console.Cli" Version="0.52.0" />
<PackageVersion Include="Spectre.Console" Version="0.53.0" />
<PackageVersion Include="Spectre.Console.Cli" Version="0.53.0" />
<PackageVersion Include="Stubble.Core" Version="1.10.8" />
<PackageVersion Include="System.Composition" Version="9.0.10" />
<PackageVersion Include="YamlDotNet" Version="16.3.0" />
Expand Down
83 changes: 42 additions & 41 deletions src/Docfx.App/Docfx.App.csproj
Original file line number Diff line number Diff line change
@@ -1,41 +1,42 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- TODO: Enable package validation after v2.78.0 packages are published -->
<EnablePackageValidation>false</EnablePackageValidation>
<PackageValidationBaselineVersion>2.78.0</PackageValidationBaselineVersion>
<Description>Docfx published as a library for extensibility and advanced customization</Description>
</PropertyGroup>

<ItemGroup>
<Content Include="templates/**" CopyToOutputDirectory="PreserveNewest" PackageCopyToOutput="true" PackagePath="contentFiles/any/any/templates" />
<None Include="Build\Docfx.App.props" Pack="true" PackagePath="build/" />
</ItemGroup>

<ItemGroup>
<InternalsVisibleTo Include="docfx" />
<InternalsVisibleTo Include="docfx.Tests" />
<InternalsVisibleTo Include="docfx.Snapshot.Tests" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Playwright" />
<PackageReference Include="PdfPig" />
</ItemGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Docfx.Build.Common\Docfx.Build.Common.csproj" />
<ProjectReference Include="..\Docfx.Build\Docfx.Build.csproj" />
<ProjectReference Include="..\Docfx.Build.ManagedReference\Docfx.Build.ManagedReference.csproj" />
<ProjectReference Include="..\Docfx.Build.RestApi\Docfx.Build.RestApi.csproj" />
<ProjectReference Include="..\Docfx.Build.SchemaDriven\Docfx.Build.SchemaDriven.csproj" />
<ProjectReference Include="..\Docfx.Build.UniversalReference\Docfx.Build.UniversalReference.csproj" />
<ProjectReference Include="..\Docfx.Common\Docfx.Common.csproj" />
<ProjectReference Include="..\Docfx.MarkdigEngine\Docfx.MarkdigEngine.csproj" />
<ProjectReference Include="..\Docfx.Plugins\Docfx.Plugins.csproj" />
<ProjectReference Include="..\Docfx.Glob\Docfx.Glob.csproj" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- TODO: Enable package validation after v2.78.0 packages are published -->
<EnablePackageValidation>false</EnablePackageValidation>
<PackageValidationBaselineVersion>2.78.0</PackageValidationBaselineVersion>
<Description>Docfx published as a library for extensibility and advanced customization</Description>
</PropertyGroup>

<ItemGroup>
<Content Include="templates/**" CopyToOutputDirectory="PreserveNewest" PackageCopyToOutput="true" PackagePath="contentFiles/any/any/templates" />
<None Include="Build\Docfx.App.props" Pack="true" PackagePath="build/" />
</ItemGroup>

<ItemGroup>
<InternalsVisibleTo Include="docfx" />
<InternalsVisibleTo Include="docfx.Tests" />
<InternalsVisibleTo Include="docfx.Snapshot.Tests" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Playwright" />
<PackageReference Include="PdfPig" />
</ItemGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Spectre.Console" VersionOverride="0.53.0" />
<ProjectReference Include="..\Docfx.Build.Common\Docfx.Build.Common.csproj" />
<ProjectReference Include="..\Docfx.Build\Docfx.Build.csproj" />
<ProjectReference Include="..\Docfx.Build.ManagedReference\Docfx.Build.ManagedReference.csproj" />
<ProjectReference Include="..\Docfx.Build.RestApi\Docfx.Build.RestApi.csproj" />
<ProjectReference Include="..\Docfx.Build.SchemaDriven\Docfx.Build.SchemaDriven.csproj" />
<ProjectReference Include="..\Docfx.Build.UniversalReference\Docfx.Build.UniversalReference.csproj" />
<ProjectReference Include="..\Docfx.Common\Docfx.Common.csproj" />
<ProjectReference Include="..\Docfx.MarkdigEngine\Docfx.MarkdigEngine.csproj" />
<ProjectReference Include="..\Docfx.Plugins\Docfx.Plugins.csproj" />
<ProjectReference Include="..\Docfx.Glob\Docfx.Glob.csproj" />
</ItemGroup>
</Project>
Loading