Commit 3c59e0f 1 parent f4e7dc5 commit 3c59e0f Copy full SHA for 3c59e0f
File tree 2 files changed +33
-5
lines changed
2 files changed +33
-5
lines changed Original file line number Diff line number Diff line change 20
20
run : dotnet pack 'src/${{ env.PROJECT }}/${{ env.PROJECT }}.csproj' -c Release -o .
21
21
- shell : bash
22
22
name : nuget push
23
- run : dotnet nuget push './${{ env.PROJECT }}.${{ steps.nbgv.outputs.NuGetPackageVersion }}.nupkg' -k "$NUGET_API_KEY " -s https://api.nuget.org/v3/index.json
23
+ run : dotnet nuget push './${{ env.PROJECT }}.${{ steps.nbgv.outputs.NuGetPackageVersion }}.nupkg' -k "$NUGET_API_KEY2 " -s https://api.nuget.org/v3/index.json
24
24
env :
25
- NUGET_API_KEY : ${{ secrets.NUGET_API_KEY }}
25
+ NUGET_API_KEY : ${{ secrets.NUGET_API_KEY2 }}
Original file line number Diff line number Diff line change
1
+ # Dax.Vpax.CLI
2
+
1
3
This is a .NET tool that provides CLI access to [ VertiPaq-Analyzer] ( https://github.com/sql-bi/VertiPaq-Analyzer ) functions.
2
4
3
5
Operations supported by this tool are:
4
6
5
7
- Export a VPAX file from a tabular model.
6
8
9
+ ## How to install the tool
10
+
7
11
The tool can be installed using the following command:
8
12
9
- ``` shell
10
- dotnet tool install -g Dax.Vpax.CLI
13
+ ```` bash
14
+ dotnet tool install Dax.Vpax.CLI --global
15
+ ````
16
+
17
+ ## How to run the tool
18
+
19
+ ```` bash
20
+ vpax export " C:\output\file.vpax" " Provider=MSOLAP;Data Source=<SERVER>;Initial Catalog=<DATABASE>"
21
+ ````
22
+
23
+ Use ` vpax -? ` or ` vpax export -? ` to learn more.
24
+
11
25
```
26
+ Description:
27
+ Export a VPAX file from a tabular model
28
+
29
+ Usage:
30
+ vpax export <path> <connection-string> [options]
12
31
13
- After installing you can invoke the tool using the ` vpax ` command. Use ` vpax -? ` to learn more.
32
+ Arguments:
33
+ <path> Path to write the VPAX file
34
+ <connection-string> Connection string to the tabular model
35
+
36
+ Options:
37
+ --overwrite Overwrite the VPAX file if it already exists [default: False]
38
+ --exclude-bim Exclude the BIM model (Model.bim) from the export [default: False]
39
+ --exclude-vpa Exclude the VPA model (DaxVpaView.json) from the export [default: False]
40
+ -?, -h, --help Show help and usage information
41
+ ```
You can’t perform that action at this time.
0 commit comments