diff --git a/DnDGen.TreasureGen/DnDGen.TreasureGen.csproj b/DnDGen.TreasureGen/DnDGen.TreasureGen.csproj
index 3d3c9c56..509d6962 100644
--- a/DnDGen.TreasureGen/DnDGen.TreasureGen.csproj
+++ b/DnDGen.TreasureGen/DnDGen.TreasureGen.csproj
@@ -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
https://github.com/DnDGen/TreasureGen
https://github.com/DnDGen/TreasureGen
diff --git a/README.md b/README.md
index e66f7222..7d669390 100644
--- a/README.md
+++ b/README.md
@@ -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();
diff --git a/cicd/build.yml b/cicd/build.yml
index 6c3e37f9..8a9c2a4d 100644
--- a/cicd/build.yml
+++ b/cicd/build.yml
@@ -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'
diff --git a/cicd/release.yml b/cicd/release.yml
index be9c9096..1f2aeae7 100644
--- a/cicd/release.yml
+++ b/cicd/release.yml
@@ -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'