-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathaggregator-ruleng.csproj
More file actions
44 lines (37 loc) · 1.84 KB
/
Copy pathaggregator-ruleng.csproj
File metadata and controls
44 lines (37 loc) · 1.84 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>aggregator.Engine</RootNamespace>
<LangVersion>latest</LangVersion>
<!-- AssemblyInfo -->
<Title>Aggregator Rule Engine</Title>
<Company>TFS Aggregator Team</Company>
<Product>Aggregator CLI</Product>
<Copyright>Copyright © TFS Aggregator Team</Copyright>
<Description>Azure DevOps Aggregator Rule Engine Interpreter</Description>
<VersionPrefix>0.0.1</VersionPrefix>
<VersionSuffix>localdev</VersionSuffix>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<CodeAnalysisRuleSet>aggregator-ruleng.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<CodeAnalysisRuleSet>aggregator-ruleng.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="..\.sonarlint\tfsaggregator_aggregator-cli\CSharp\SonarLint.xml" Link="SonarLint.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Scripting" Version="4.1.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="6.0.3" />
<PackageReference Include="Microsoft.TeamFoundationServer.Client" Version="16.170.0" />
<PackageReference Include="Microsoft.VisualStudio.Services.Client" Version="16.170.0" />
<PackageReference Include="Microsoft.VisualStudio.Services.ExtensionManagement.WebApi" Version="16.170.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\aggregator-shared\aggregator-shared.csproj" />
</ItemGroup>
</Project>