This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from OctopusDeploy/fix-code-format-settings
Fix code format settings
- Loading branch information
Showing
55 changed files
with
885 additions
and
524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="Octopus Dependencies" value="https://f.feedz.io/octopus-deploy/dependencies/nuget" /> | ||
<add key="NuGet.org v3" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="GitHub" value="https://nuget.pkg.github.com/OctopusDeploy/index.json" /> | ||
</packageSources> | ||
<packageSources> | ||
<add key="Octopus Dependencies" value="https://f.feedz.io/octopus-deploy/dependencies/nuget"/> | ||
<add key="NuGet.org v3" value="https://api.nuget.org/v3/index.json"/> | ||
<add key="GitHub" value="https://nuget.pkg.github.com/OctopusDeploy/index.json"/> | ||
</packageSources> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using Nuke.Common.Tooling; | ||
|
||
[TypeConverter(typeof(TypeConverter<Configuration>))] | ||
public class Configuration : Enumeration | ||
{ | ||
public static Configuration Debug = new Configuration { Value = nameof(Debug) }; | ||
public static Configuration Release = new Configuration { Value = nameof(Release) }; | ||
public static Configuration Debug = new() | ||
{ Value = nameof(Debug) }; | ||
|
||
public static implicit operator string(Configuration configuration) | ||
{ | ||
return configuration.Value; | ||
} | ||
public static Configuration Release = new() | ||
{ Value = nameof(Release) }; | ||
|
||
public static implicit operator string(Configuration configuration) => configuration.Value; | ||
} |
46 changes: 23 additions & 23 deletions
46
build/Octopus.Server.Extensibility.JiraIntegration.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd" xmlns:octopus="http://octopus.org"> | ||
<metadata> | ||
<id>Octopus.Server.Extensibility.JiraIntegration</id> | ||
<title>Octopus Server Extensibility Issue Tracker - Jira Integration</title> | ||
<version>$version$</version> | ||
<authors>Octopus Deploy</authors> | ||
<owners>Octopus Deploy Pty. Ltd.</owners> | ||
<summary>Octopus Deploy Jira Integration issue tracker.</summary> | ||
<description> | ||
Implements the Jira Integration issue tracker. | ||
</description> | ||
<language>en-US</language> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<licenseUrl>https://github.com/OctopusDeploy/JiraIntegration/blob/main/LICENSE.txt</licenseUrl> | ||
<projectUrl>https://github.com/OctopusDeploy/JiraIntegration</projectUrl> | ||
<repository type="git" url="https://github.com/OctopusDeploy/JiraIntegration" /> | ||
<iconUrl>https://i.octopusdeploy.com/resources/Avatar3_360.png</iconUrl> | ||
<tags>automation deployment</tags> | ||
<developmentDependency>true</developmentDependency> | ||
</metadata> | ||
<files> | ||
<file src="..\source\Server\bin\Release\net5.0\*.dll" target="tools" /> | ||
</files> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>Octopus.Server.Extensibility.JiraIntegration</id> | ||
<title>Octopus Server Extensibility Issue Tracker - Jira Integration</title> | ||
<version>$version$</version> | ||
<authors>Octopus Deploy</authors> | ||
<owners>Octopus Deploy Pty. Ltd.</owners> | ||
<summary>Octopus Deploy Jira Integration issue tracker.</summary> | ||
<description> | ||
Implements the Jira Integration issue tracker. | ||
</description> | ||
<language>en-US</language> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<licenseUrl>https://github.com/OctopusDeploy/JiraIntegration/blob/main/LICENSE.txt</licenseUrl> | ||
<projectUrl>https://github.com/OctopusDeploy/JiraIntegration</projectUrl> | ||
<repository type="git" url="https://github.com/OctopusDeploy/JiraIntegration"/> | ||
<iconUrl>https://i.octopusdeploy.com/resources/Avatar3_360.png</iconUrl> | ||
<tags>automation deployment</tags> | ||
<developmentDependency>true</developmentDependency> | ||
</metadata> | ||
<files> | ||
<file src="..\source\Server\bin\Release\net5.0\*.dll" target="tools"/> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<RootNamespace></RootNamespace> | ||
<NoWarn>CS0649;CS0169</NoWarn> | ||
<NukeRootDirectory>..</NukeRootDirectory> | ||
<NukeScriptDirectory>..</NukeScriptDirectory> | ||
<NukeTelemetryVersion>1</NukeTelemetryVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<RootNamespace></RootNamespace> | ||
<NoWarn>CS0649;CS0169</NoWarn> | ||
<NukeRootDirectory>..</NukeRootDirectory> | ||
<NukeScriptDirectory>..</NukeScriptDirectory> | ||
<NukeTelemetryVersion>1</NukeTelemetryVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageDownload Include="OctoVersion.Tool" Version="[0.2.645]" /> | ||
<PackageReference Include="Nuke.Common" Version="5.3.0" /> | ||
<PackageDownload Include="JetBrains.ReSharper.GlobalTools" Version="[2021.2.0]" /> | ||
<PackageReference Include="Octopus.NukeBuildComponents" Version="0.1.29" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageDownload Include="OctoVersion.Tool" Version="[0.2.645]"/> | ||
<PackageReference Include="Nuke.Common" Version="5.3.0"/> | ||
<PackageDownload Include="JetBrains.ReSharper.GlobalTools" Version="[2021.2.0]"/> | ||
<PackageReference Include="Octopus.NukeBuildComponents" Version="0.1.29"/> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks> | ||
<RootNamespace>Octopus.Client.Extensibility.JiraIntegration</RootNamespace> | ||
<AssemblyName>Octopus.Client.Extensibility.JiraIntegration</AssemblyName> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
<Authors>Octopus Deploy</Authors> | ||
<Company>Octopus Deploy Pty. Ltd.</Company> | ||
<Product>Octopus Deploy Client Extensibility - Jira</Product> | ||
<Description>Octopus Deploy Client Extensibility for the Jira Integration and Service Desk</Description> | ||
<PackageId>Octopus.Client.Extensibility.JiraIntegration</PackageId> | ||
<PackageIconUrl>https://i.octopusdeploy.com/resources/Avatar3_360.png</PackageIconUrl> | ||
<PackageLicenseUrl>https://github.com/OctopusDeploy/JiraIntegration/blob/master/LICENSE.txt</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/OctopusDeploy/JiraIntegration</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/OctopusDeploy/JiraIntegration</RepositoryUrl> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Octopus.Server.Client" Version="11.2.3319" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks> | ||
<RootNamespace>Octopus.Client.Extensibility.JiraIntegration</RootNamespace> | ||
<AssemblyName>Octopus.Client.Extensibility.JiraIntegration</AssemblyName> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
<Authors>Octopus Deploy</Authors> | ||
<Company>Octopus Deploy Pty. Ltd.</Company> | ||
<Product>Octopus Deploy Client Extensibility - Jira</Product> | ||
<Description>Octopus Deploy Client Extensibility for the Jira Integration and Service Desk</Description> | ||
<PackageId>Octopus.Client.Extensibility.JiraIntegration</PackageId> | ||
<PackageIconUrl>https://i.octopusdeploy.com/resources/Avatar3_360.png</PackageIconUrl> | ||
<PackageLicenseUrl>https://github.com/OctopusDeploy/JiraIntegration/blob/master/LICENSE.txt</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/OctopusDeploy/JiraIntegration</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/OctopusDeploy/JiraIntegration</RepositoryUrl> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Octopus.Server.Client" Version="11.2.3319"/> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.