This repository was archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServer.csproj
More file actions
27 lines (24 loc) · 1.36 KB
/
Server.csproj
File metadata and controls
27 lines (24 loc) · 1.36 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<AssemblyName>Octopus.Server.Extensibility.IssueTracker.AzureDevOps</AssemblyName>
<RootNamespace>Octopus.Server.Extensibility.IssueTracker.AzureDevOps</RootNamespace>
<NeutralLanguage>en-US</NeutralLanguage>
<Description>Implements the Azure DevOps issue tracker.</Description>
<Authors>Octopus Deploy</Authors>
<Company>Octopus Deploy Pty. Ltd.</Company>
<PackageIconUrl>https://i.octopusdeploy.com/resources/Avatar3_360.png</PackageIconUrl>
<PackageLicenseUrl>https://github.com/OctopusDeploy/AzureDevOpsIssueTracker/blob/master/LICENSE.txt</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/OctopusDeploy/AzureDevOpsIssueTracker</PackageProjectUrl>
<RepositoryUrl>https://github.com/OctopusDeploy/AzureDevOpsIssueTracker</RepositoryUrl>
<Nullable>enable</Nullable>
<WarningsAsErrors>true</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.34" />
<PackageReference Include="Octopus.Data" Version="6.0.0" />
<PackageReference Include="Octopus.Diagnostics" Version="2.1.1" />
<PackageReference Include="Octopus.Server.Extensibility" Version="14.0.1" />
<PackageReference Include="Octopus.Server.MessageContracts" Version="0.1.0" />
</ItemGroup>
</Project>