-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/0.8.0: (34 commits) (GH-124) Added new label verb (build) Change casing of NuGet Id (build) Switch to jsdeliver icon URLs (GH-116) Added the global tool project (doc) Added additional information to parameters (GH-121) Modified tests to match changes (GH-121) Append closed parameter to URL (GH-119) Corrected casing check (GH-120) Corrected parts identification updated documentation Implemented the access token option (build) Switch to using dotnet cli for build (doc) Updated copyright (build) Renamed setup.cake to recipe.cake (build) Renamed AppVeyor yml file (build) Added header for AppVeyor section (build) Remove pinning of specific version of Cake.Recipe (build) Switch to AppVeyor feed (build) Ensure CodeCoverage report is generated (build) Removed Outputpath ...
- Loading branch information
Showing
49 changed files
with
763 additions
and
854 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | ||
</PropertyGroup> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
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
54 changes: 54 additions & 0 deletions
54
Source/GitReleaseManager.Cli/GitReleaseManager.Tool.csproj
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>GitReleaseManager</AssemblyName> | ||
|
||
<PackAsTool>true</PackAsTool> | ||
<TargetFrameworks>netcoreapp2.1</TargetFrameworks> | ||
<ToolCommandName>dotnet-gitreleasemanager</ToolCommandName> | ||
<PackageId>GitReleaseManager.Tool</PackageId> | ||
|
||
<Title>GitReleaseManager Tool</Title> | ||
<Authors>GitTools Contributors</Authors> | ||
<PackageProjectUrl>https://github.com/GitTools/GitReleaseManager</PackageProjectUrl> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageTags>github release notes create export</PackageTags> | ||
<Description>Tool for creating and exporting releases for software applications hosted on GitHub.</Description> | ||
<Copyright>Copyright (c) 2015 - Present - GitTools Contributors</Copyright> | ||
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl> | ||
<PackageIconUrl>https://cdn.jsdelivr.net/gh/GitTools/GitReleaseManager@9c547452a10afaf83fce1b5833f4762487b017b7/Icons/package_icon.svg</PackageIconUrl> | ||
<PackageReleaseNotes>https://github.com/GitTools/GitReleaseManager/releases</PackageReleaseNotes> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<RunCodeAnalysisRestore>False</RunCodeAnalysisRestore> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<RunCodeAnalysisRestore>True</RunCodeAnalysisRestore> | ||
</PropertyGroup> | ||
<Import Project="..\..\BuildScripts\CodeAnalysis.props" Condition="Exists('..\..\BuildScripts\CodeAnalysis.props')" /> | ||
<Import Project="..\..\BuildScripts\StyleCop.props" Condition="Exists('..\..\BuildScripts\StyleCop.props')" /> | ||
<ItemGroup> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="..\SolutionInfo.cs" Link="SolutionInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<CodeAnalysisDictionary Include="..\CustomDictionary.xml"> | ||
<Link>CustomDictionary.xml</Link> | ||
<SubType>Designer</SubType> | ||
</CodeAnalysisDictionary> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\GitReleaseManager\GitReleaseManager.Core.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.3.0" /> | ||
<PackageReference Include="Octokit" Version="0.32.0" /> | ||
</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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
//----------------------------------------------------------------------- | ||
// <copyright file="LabelSubOptions.cs" company="GitTools Contributors"> | ||
// Copyright (c) 2015 - Present - GitTools Contributors | ||
// </copyright> | ||
//----------------------------------------------------------------------- | ||
|
||
namespace GitReleaseManager.Cli.Options | ||
{ | ||
using CommandLine; | ||
|
||
[Verb("label", HelpText = "Deletes existing labels and replaces with set of default labels.")] | ||
public class LabelSubOptions : BaseGitHubSubOptions | ||
{ | ||
} | ||
} |
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.