-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathMarkdownSnippets.MsBuild.csproj
29 lines (27 loc) · 1.23 KB
/
MarkdownSnippets.MsBuild.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
29
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>Extract code snippets from any language to be used when building documentation.</Description>
<DevelopmentDependency>true</DevelopmentDependency>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\ConfigReader\*.cs" />
<Content Include=".\bin\$(Configuration)\$(TargetFramework)\MarkdownSnippets.MsBuild.dll">
<Pack>true</Pack>
<PackagePath>task</PackagePath>
</Content>
<Content Include="$(SolutionDir)MarkdownSnippets\bin\$(Configuration)\$(TargetFramework)\MarkdownSnippets.dll">
<Pack>true</Pack>
<PackagePath>task</PackagePath>
</Content>
<Content Include="MarkdownSnippets.MsBuild.targets">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="17.9.5" PrivateAssets="All" />
<ProjectReference Include="..\MarkdownSnippets\MarkdownSnippets.csproj" PrivateAssets="All" />
<PackageReference Include="ProjectDefaults" Version="1.0.112" PrivateAssets="all" />
</ItemGroup>
</Project>