Skip to content

Commit

Permalink
Updated to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
david-driscoll committed Jul 15, 2019
1 parent 63a1aea commit 28ea7d0
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 20 deletions.
6 changes: 6 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@
"commands": [
"nuke"
]
},
"gitreleasemanager.tool": {
"version": "0.8.0",
"commands": [
"dotnet-gitreleasemanager"
]
}
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -202,3 +202,5 @@ project.lock.json
!tools/packages.config
/scripts/
src/Cake.Scripts/tools/tools/

codealike.json
22 changes: 22 additions & 0 deletions GitReleaseManager.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# create:
# include-footer: false
# footer-heading: ''
# footer-content: ''
# footer-includes-milestone: true
export:
include-created-date-in-title: true
issue-labels-include:
- ":boom: breaking change"
- ":rocket: feature"
- ":fire: enhancement"
- ":blue_book: documentation"
- ":beetle: bug"
- ":squirrel: chore"
- ":raised_hand: good first issue"
- ":raised_hand: help wanted"
- ":sparkles: mysterious"
issue-labels-exclude:
- ":x: invalid"
- ":grey_question: question"
- ":lock: wontfix"
- ":family: duplicate"
14 changes: 7 additions & 7 deletions Packages.props
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<ItemGroup>
<GlobalPackageReference Include="Rocket.Surgery.Build.Metadata" Version="3.3.3" Condition="'$(MSBuildProjectName)'!='.build'" />
<GlobalPackageReference Include="Rocket.Surgery.Build.Metadata" Version="3.3.4" Condition="'$(MSBuildProjectName)'!='.build'" />
<!-- <GlobalPackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.3" /> -->
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19270-01" />
<GlobalPackageReference Include="Roslynator.Analyzers" Version="2.1.0-rc" />
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19351-01" />
<GlobalPackageReference Include="Roslynator.Analyzers" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Nuke.Common" Version="0.20.1" />
<PackageReference Update="Rocket.Surgery.Nuke" Version="0.1.0-beta.11" />
<PackageReference Update="GitVersion.CommandLine.DotNetCore" Version="5.0.0-beta5.2" />
<PackageReference Update="ReportGenerator" Version="4.2.5" />
<PackageReference Update="Rocket.Surgery.Nuke" Version="0.2.1-beta.1" />
<PackageReference Update="GitVersion.CommandLine.DotNetCore" Version="5.0.0-beta5.11" />
<PackageReference Update="ReportGenerator" Version="4.2.9" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Rocket.Surgery.Extensions.Testing" Version="1.1.10" />
<PackageReference Update="Autofac.Extras.FakeItEasy" Version="5.0.1" />
<PackageReference Update="Bogus" Version="28.0.1" />
<PackageReference Update="Bogus" Version="28.0.2" />
<PackageReference Update="coverlet.collector" Version="1.0.1" />
<PackageReference Update="coverlet.msbuild" Version="2.6.3" />
<PackageReference Update="FakeItEasy" Version="5.1.1" />
Expand Down
32 changes: 19 additions & 13 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,31 @@ resources:
- repository: rsg
type: github
name: RocketSurgeonsGuild/AzureDevopsTemplates
ref: refs/tags/v0.6.0
ref: refs/tags/v0.7.1
endpoint: github

variables:
CONFIGURATION: Release
VERBOSITY: Normal
DOTNETVERSION: "2.2.300"
DOTNET3VERSION: "3.0.100-preview6-012264"
NUGETVERSION: "5.1.0"
COVERAGE: "$(Agent.BuildDirectory)/c"
ARTIFACTS: $(Build.ArtifactStagingDirectory)
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true"
CodeCovToken: '7dfeb756-b27e-47ec-8906-a349cf7e0688'
- group: rsg-bot
- name: CONFIGURATION
value: Release
- name: VERBOSITY
value: Normal
- name: COVERAGE
value: "$(Agent.BuildDirectory)/c"
- name: ARTIFACTS
value: $(Build.ArtifactStagingDirectory)
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE
value: "true"
- name: CodeCovToken
value: '7dfeb756-b27e-47ec-8906-a349cf7e0688'

jobs:
- template: pipeline/nuke.yml@rsg
parameters:
Configuration: $(Configuration)
Verbosity: $(Verbosity)
DotNetVersion: $(DotNetVersion)
DotNet3Version: $(DotNet3Version)
NuGetVersion: $(NuGetVersion)
GitHub: true
GitHubPackages: false
DotNetVersion: "2.2.300"
DotNet3Version: "3.0.100-preview6-012264"
NuGetVersion: "5.1.0"

0 comments on commit 28ea7d0

Please sign in to comment.