-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCake.Markdownlint.Tests.csproj
More file actions
31 lines (26 loc) · 1.13 KB
/
Cake.Markdownlint.Tests.csproj
File metadata and controls
31 lines (26 loc) · 1.13 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<Product>Cake.Markdownlint</Product>
<Copyright>Copyright © BBT Software AG and contributors</Copyright>
<Description>Tests for the Cake.Markdownlint addin</Description>
<Authors>BBT Software AG</Authors>
<Company>BBT Software AG</Company>
</PropertyGroup>
<PropertyGroup>
<CodeAnalysisRuleSet>..\Cake.Markdownlint.Tests.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="Cake.Core" Version="4.0.0" />
<PackageReference Include="Cake.Testing" Version="4.0.0" />
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Cake.Markdownlint\Cake.Markdownlint.csproj" />
</ItemGroup>
</Project>