Skip to content

Commit dba93cd

Browse files
authored
Merge pull request #97 from HicServices/task/RDMP-153-migrate-plugin-ext
Task/RDMP-153 migrate to .rdmp Extention
2 parents f8d7c2b + b8b2404 commit dba93cd

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

.github/workflows/dotnet-core.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,18 +82,23 @@ jobs:
8282
dotnet publish -p:DebugType=embedded -p:GenerateDocumentation=false Plugin/main/main.csproj -c Release -o p/main
8383
rm p/windows/windows.dll
8484
rm p/main/main.dll
85+
cmd /c 7z a -tzip HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.rdmp plugin.nuspec p
86+
dotnet run --project RDMP/Tools/rdmp/rdmp.csproj -c Release -- pack -p --file HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.rdmp --dir yaml
8587
cmd /c 7z a -tzip HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.nupkg plugin.nuspec p
8688
dotnet run --project RDMP/Tools/rdmp/rdmp.csproj -c Release -- pack -p --file HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.nupkg --dir yaml
8789
dotnet run --project RDMP/Tools/rdmp/rdmp.csproj -c Release -- cmd listsupportedcommands --dir yaml
88-
- name: Store created nupkg files
90+
- name: Store created rdmp files
8991
uses: actions/upload-artifact@v4
9092
with:
91-
path: ./*.nupkg
93+
path: |
94+
./*.rdmp
95+
./*.nupkg
9296
retention-days: 1
9397
- name: Upload release binaries
9498
if: contains(github.ref,'refs/tags/')
9599
uses: svenstaro/upload-release-action@v2
96100
with:
97101
repo_token: ${{ secrets.GITHUB_TOKEN }}
98102
tag: ${{ github.ref }}
99-
file: 'HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.nupkg'
103+
file_glob: true
104+
file: 'HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.*'

RDMP

Submodule RDMP updated 79 files

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ You can build this plugin ready for upload to an RDMP instance using:
3232
```bash
3333
dotnet publish -p:DebugType=embedded -p:GenerateDocumentation=false Plugin/windows/windows.csproj -c Release -o p/windows
3434
dotnet publish -p:DebugType=embedded -p:GenerateDocumentation=false Plugin/main/main.csproj -c Release -o p/main
35-
7z a -tzip Rdmp.Extensions.Plugin.6.2.1.nupkg rdmpextension.nuspec p
36-
dotnet run --project RDMP/Tools/rdmp/rdmp.csproj -c Release -- pack -p --file Rdmp.Extensions.Plugin.6.2.1.nupkg --dir yaml
35+
7z a -tzip Rdmp.Extensions.Plugin.6.2.1.rdmp rdmpextension.nuspec p
36+
dotnet run --project RDMP/Tools/rdmp/rdmp.csproj -c Release -- pack -p --file Rdmp.Extensions.Plugin.6.2.1.rdmp --dir yaml
3737
```
3838

39-
Once built you will have a file called ` Rdmp.Extensions.Plugin.6.2.1.nupkg`. The last step (with the '-p' switch to the pack command) strips out all the duplicated DLLs which are already provided within RDMP.
39+
Once built you will have a file called ` Rdmp.Extensions.Plugin.6.2.1.rdmp`. The last step (with the '-p' switch to the pack command) strips out all the duplicated DLLs which are already provided within RDMP.
4040

4141
Upload it to RDMP using
4242

4343
```bash
44-
./rdmp pack -f Z:\Repos\RdmpExtensions\Rdmp.Extensions.Plugin.6.2.1.nupkg
44+
./rdmp pack -f Z:\Repos\RdmpExtensions\Rdmp.Extensions.Plugin.6.2.1.rdmp
4545
```
4646
_Upload into RDMP. Or use the gui client 'Plugins' node under the Tables(Advanced) toolbar button_

SharedAssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
[assembly: AssemblyTrademark("")]
1010
[assembly: AssemblyCulture("")]
1111

12-
[assembly: AssemblyVersion("6.2.3")]
13-
[assembly: AssemblyFileVersion("6.2.3")]
14-
[assembly: AssemblyInformationalVersion("6.2.3")]
12+
[assembly: AssemblyVersion("6.2.4")]
13+
[assembly: AssemblyFileVersion("6.2.4")]
14+
[assembly: AssemblyInformationalVersion("6.2.4")]

0 commit comments

Comments
 (0)