Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mdoc.csproj « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0051cc0381e3ddf63d43644da5887f490ae92ba (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFramework>net471</TargetFramework>
    <OutputType>Exe</OutputType>
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
    <OutputPath>$(MSBuildThisFileDirectory)..\bin\$(Configuration)</OutputPath>
  </PropertyGroup>

  <ItemGroup>
    <Compile Remove="mdoc.Test\**" />
    <Compile Remove="Test\**" />
    <None Remove="mdoc.Test\**" />
    <None Remove="Test\**" />
  </ItemGroup>

  <ItemGroup>
    <EmbeddedResource Include="Resources\defaulttemplate.xsl">
      <LogicalName>defaulttemplate.xsl</LogicalName>
    </EmbeddedResource>
    <EmbeddedResource Include="Resources\monodoc-ecma.xsd">
      <LogicalName>monodoc-ecma.xsd</LogicalName>
    </EmbeddedResource>
    <EmbeddedResource Include="Resources\msitomsx.xsl">
      <LogicalName>msitomsx.xsl</LogicalName>
    </EmbeddedResource>
    <EmbeddedResource Include="Resources\overview.xsl">
      <LogicalName>overview.xsl</LogicalName>
    </EmbeddedResource>
    <EmbeddedResource Include="Resources\stylesheet.xsl">
      <LogicalName>stylesheet.xsl</LogicalName>
    </EmbeddedResource>
  </ItemGroup>

  <ItemGroup>
    <None Include="..\monodoc\Resources\mdoc-html-format.xsl">
      <Link>Resources\mdoc-html-format.xsl</Link>
    </None>
    <None Include="..\monodoc\Resources\mdoc-html-utils.xsl">
      <Link>Resources\mdoc-html-utils.xsl</Link>
    </None>
    <None Include="..\monodoc\Resources\mdoc-sections-css.xsl">
      <Link>Resources\mdoc-sections-css.xsl</Link>
    </None>
    <None Include="..\monodoc\Resources\mono-ecma-css.xsl">
      <Link>Resources\mono-ecma-css.xsl</Link>
    </None>
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="Mono.Cecil" Version="$(NuGetVersionMonoCecil)" />
    <PackageReference Include="SharpZipLib" Version="$(NuGetVersionSharpZipLib)" />
    <PackageReference Include="QuickIO.NET" Version="$(NuGetVersionQuickIONET)" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\monodoc\monodoc.csproj" />
  </ItemGroup>
</Project>