Skip to content

Commit e323fa2

Browse files
committed
0.6.4
1 parent 42cb1cd commit e323fa2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Get plugin file checksum
6363
if: startsWith(github.ref, 'refs/tags/')
6464
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}')"
6666

6767
- name: Release
6868
uses: softprops/action-gh-release@v1
@@ -75,7 +75,7 @@ jobs:
7575
dprint-plugin-roslyn-aarch64-apple-darwin.zip
7676
dprint-plugin-roslyn-x86_64-unknown-linux-gnu.zip
7777
dprint-plugin-roslyn-x86_64-pc-windows-msvc.zip
78-
plugin.exe-plugin
78+
plugin.json
7979
body: |
8080
## Install
8181
@@ -86,7 +86,7 @@ jobs:
8686
{
8787
// etc...
8888
"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 }}"
9090
]
9191
}
9292
```

DprintPluginRoslyn/DprintPluginRoslyn.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<RootNamespace>Dprint.Plugins.Roslyn</RootNamespace>
77
<AssemblyName>dprint-plugin-roslyn</AssemblyName>
88
<Nullable>enable</Nullable>
9-
<Version>0.6.3</Version>
9+
<Version>0.6.4</Version>
1010
<Authors>David Sherret</Authors>
1111
<Company>Dprint Code Formatting</Company>
1212
</PropertyGroup>

scripts/createForTestingOnWindows.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Script for quickly creating the plugin for testing purposes on Windows
22
# To run:
33
# 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
55
# as shown when initially run.
66

77
$ErrorActionPreference = "Stop"

scripts/create_plugin_file.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
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";
33

44
const currentDirPath = path.dirname(path.fromFileUrl(import.meta.url));
55
const projectFile = path.join(currentDirPath, "../DprintPluginRoslyn/DprintPluginRoslyn.csproj");

0 commit comments

Comments
 (0)