-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathaggregator-webshared.csproj
39 lines (36 loc) · 2.04 KB
/
aggregator-webshared.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
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>aggregator</RootNamespace>
<!-- AssemblyInfo -->
<Title>Aggregator Server Common</Title>
<Company>TFS Aggregator Team</Company>
<Product>Aggregator CLI</Product>
<Copyright>Copyright © TFS Aggregator Team</Copyright>
<Description>Shared code between Azure Function and ASP.NET</Description>
<VersionPrefix>0.0.1</VersionPrefix>
<VersionSuffix>localdev</VersionSuffix>
<CodeAnalysisRuleSet>..\.sonarlint\tfsaggregator_aggregator-clicsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="..\.sonarlint\tfsaggregator_aggregator-cli\CSharp\SonarLint.xml" Link="SonarLint.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<!-- explicit reference -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" />
<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="Microsoft.VisualStudio.Services.ServiceHooks.WebApi" Version="16.170.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\aggregator-ruleng\aggregator-ruleng.csproj" />
<ProjectReference Include="..\aggregator-shared\aggregator-shared.csproj" />
</ItemGroup>
</Project>