Skip to content

Commit 6ef2243

Browse files
authored
add release notes for first pub release (#47)
* add release notes for first pub release * capture build version info
1 parent 81c20c3 commit 6ef2243

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

.azure-pipelines/OfficialBuild.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ variables:
1717
# AZ_DevOps_Read_PAT # PAT to read from AzDO feed in msazure
1818
# VSIX_VERSION # VSIX package/release version; must be manually managed for now!
1919

20-
trigger:
21-
- release/*
20+
# trigger:
21+
# - release/*
2222

2323
# PR loops only via GH workflows
2424
pr: none
@@ -30,6 +30,9 @@ steps:
3030
- script: echo "##vso[build.updatebuildnumber]$(VSIX_VERSION)
3131
displayName: Set Job version
3232

33+
- script: mkdir package && echo $(VSIX_VERSION),$(Build.SourceVersion) > package/version.csv
34+
displayName: Capture build version in package/version.csv
35+
3336
- task: NodeTool@0
3437
displayName: 'Use nodejs 14.x'
3538
inputs:
@@ -51,7 +54,7 @@ steps:
5154
# displayName: 'checkout release/$(Build.SourceBranchName) - (release-it cannot work on detached heads)'
5255

5356
- task: Npm@1
54-
displayName: 'increment version via npm'
57+
displayName: 'set version via npm'
5558
inputs:
5659
command: custom
5760
customCommand: run increment-version-npm

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,24 @@ Installing this extension will also make the latest Power Platform CLI (aka pac)
1313

1414
![VSCode Terminal with pac CLI](https://github.com/microsoft/powerplatform-vscode/blob/main/src/client/assets/pac-CLI-in-terminal.png?raw=true)
1515

16+
## Release Notes
17+
18+
0.2.8:
19+
20+
- initial public preview:
21+
- pac CLI installed and runnable in VSCode terminal (cmd, PS, pwsh, git bash, any macOS shell like zsh, fish)
22+
- PA Portal language services and auto complete
23+
- known issues:
24+
- macOS: no good check if the required separate install of dotnetCore 3.x or 5.x is present
25+
- macOS: 'pac auth create' interactive flow not yet working, pls supply credentials with --username/--password (or appId triple)
26+
27+
28+
## Requirements
29+
30+
- VSCode >= 1.5x
31+
- .NET Windows 4.x
32+
- macOS: dotnetCore SDK 3.x or 5.x
33+
1634
## Getting Started
1735

1836
Open the VS Code Terminal (Terminal | New Terminal) and type in:
@@ -78,6 +96,10 @@ Listing all Solutions from the current Dataverse Organization...
7896
[5] MicrosoftPortalDependencies Dynamics 365 Portals - Portal dependencies 9.2.2103.0
7997
```
8098

99+
## Feedback & Questions
100+
101+
Please use the issues tracker in the home repo: <https://github.com/microsoft/powerplatform-vscode/issues>
102+
81103
## Contributing
82104

83105
**PRE-RELEASE SOFTWARE.**

0 commit comments

Comments
 (0)