-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathmdoc.csproj
More file actions
71 lines (64 loc) · 2.67 KB
/
mdoc.csproj
File metadata and controls
71 lines (64 loc) · 2.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net471;net6.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net471' ">
<OutputPath>$(MSBuildThisFileDirectory)..\bin\$(Configuration)</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' != 'net471' ">
<OutputPath>$(MSBuildThisFileDirectory)..\bin\$(Configuration)-$(TargetFramework)</OutputPath>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
</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>