File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 62
62
- name : Get plugin file checksum
63
63
if : startsWith(github.ref, 'refs/tags/')
64
64
id : get_plugin_file_checksum
65
- run : echo "::set-output name=CHECKSUM::$(shasum -a 256 plugin.exe-plugin | awk '{print $1}')"
65
+ run : echo "::set-output name=CHECKSUM::$(shasum -a 256 plugin.json | awk '{print $1}')"
66
66
67
67
- name : Release
68
68
uses : softprops/action-gh-release@v1
75
75
dprint-plugin-roslyn-aarch64-apple-darwin.zip
76
76
dprint-plugin-roslyn-x86_64-unknown-linux-gnu.zip
77
77
dprint-plugin-roslyn-x86_64-pc-windows-msvc.zip
78
- plugin.exe-plugin
78
+ plugin.json
79
79
body : |
80
80
## Install
81
81
86
86
{
87
87
// etc...
88
88
"plugins": [
89
- "https://plugins.dprint.dev/roslyn-${{ steps.get_tag_version.outputs.TAG_VERSION }}.exe-plugin @${{ steps.get_plugin_file_checksum.outputs.CHECKSUM }}"
89
+ "https://plugins.dprint.dev/roslyn-${{ steps.get_tag_version.outputs.TAG_VERSION }}.json @${{ steps.get_plugin_file_checksum.outputs.CHECKSUM }}"
90
90
]
91
91
}
92
92
```
Original file line number Diff line number Diff line change 6
6
<RootNamespace >Dprint.Plugins.Roslyn</RootNamespace >
7
7
<AssemblyName >dprint-plugin-roslyn</AssemblyName >
8
8
<Nullable >enable</Nullable >
9
- <Version >0.6.3 </Version >
9
+ <Version >0.6.4 </Version >
10
10
<Authors >David Sherret</Authors >
11
11
<Company >Dprint Code Formatting</Company >
12
12
</PropertyGroup >
Original file line number Diff line number Diff line change 1
1
# Script for quickly creating the plugin for testing purposes on Windows
2
2
# To run:
3
3
# 1. Run `./scripts/createForTestingOnWindows.ps1`
4
- # 2. Update dprint.json to point at ./plugin.exe-plugin then update checksum
4
+ # 2. Update dprint.json to point at ./plugin.json then update checksum
5
5
# as shown when initially run.
6
6
7
7
$ErrorActionPreference = " Stop"
Original file line number Diff line number Diff line change 1
1
import * as path from "https://deno.land/[email protected] /path/mod.ts" ;
2
- import { processPlugin } from "https://raw.githubusercontent.com/dprint/automation/0.2 .0/mod.ts" ;
2
+ import { processPlugin } from "https://raw.githubusercontent.com/dprint/automation/0.3 .0/mod.ts" ;
3
3
4
4
const currentDirPath = path . dirname ( path . fromFileUrl ( import . meta. url ) ) ;
5
5
const projectFile = path . join ( currentDirPath , "../DprintPluginRoslyn/DprintPluginRoslyn.csproj" ) ;
You can’t perform that action at this time.
0 commit comments