Skip to content

Commit

Permalink
10.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cidthecoatrack committed Jan 11, 2024
1 parent 15d6512 commit c5732e7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions DnDGen.TreasureGen/DnDGen.TreasureGen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
10.5.2: Issue #117 - Missing quantities for specific weapons
10.5.3: Upgrade RollGen to 15.5.4
10.5.4: README updates
10.5.4: Pipeline optimizations
</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/DnDGen/TreasureGen</PackageProjectUrl>
<RepositoryUrl>https://github.com/DnDGen/TreasureGen</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var magicalWeapon = magicalWeaponGenerator.GenerateAtPower(PowerConstants.Major)

### Getting the Generators

You can obtain generators from the bootstrapper project. Because the generators are very complex and are decorated in various ways, there is not a (recommended) way to build these generator manually. Please use the Module Loader in the IoC domain. **Note:** This will also load the dependencies for TreasureGen, including RollGen and Infrastructure
You can obtain generators via the Ninject module. Because the generators are very complex and are decorated in various ways, there is not a (recommended) way to build these generator manually. **Note:** This will also load the dependencies for TreasureGen, including RollGen and Infrastructure

```C#
var kernel = new StandardKernel();
Expand Down
2 changes: 1 addition & 1 deletion cicd/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ steps:
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
displayName: Publish Artifacts
inputs:
pathtoPublish: './DnDGen.TreasureGen'
pathtoPublish: './DnDGen.TreasureGen/bin/Release'
artifactName: 'dndgen-treasuregen'
4 changes: 2 additions & 2 deletions cicd/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
displayName: 'NuGet push'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*.nupkg'
packagesToPush: '$(Pipeline.Workspace)/**/DnDGen.TreasureGen.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: NuGet.org
- task: GitHubRelease@1
displayName: 'GitHub release (create)'
inputs:
gitHubConnection: 'github.com_cidthecoatrack'
assets: '$(Pipeline.Workspace)/**/*.nupkg'
assets: '$(Pipeline.Workspace)/**/DnDGen.TreasureGen.*.nupkg'

0 comments on commit c5732e7

Please sign in to comment.