-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCake.AzureDevOps.Tests.csproj
More file actions
42 lines (37 loc) · 1.89 KB
/
Cake.AzureDevOps.Tests.csproj
File metadata and controls
42 lines (37 loc) · 1.89 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<Product>Cake.AzureDevOps</Product>
<Copyright>Copyright © Pascal Berger</Copyright>
<Description>Tests for the Cake.AzureDevOps addin</Description>
<Authors>Pascal Berger</Authors>
</PropertyGroup>
<PropertyGroup>
<CodeAnalysisRuleSet>..\Cake.AzureDevOps.Tests.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageReference Include="Cake.Common" Version="5.0.0" />
<PackageReference Include="Cake.Core" Version="5.0.0" />
<PackageReference Include="Cake.Testing" Version="5.0.0" />
<PackageReference Include="Microsoft.TeamFoundationServer.Client" Version="19.225.1" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
<!--Transitive dependencies specified to fix security vulnerabilities-->
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
<PackageReference Include="System.Formats.Asn1" Version="9.0.9" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.2.1" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Cake.AzureDevOps\Cake.AzureDevOps.csproj" />
</ItemGroup>
</Project>