Skip to content

Commit 7202d3c

Browse files
Fix release CI package file name problem (#4859)
The release CI was expected `csharp-<ver>-<plat>` but the code was creating `csharp.<ver>-<plat>`. This fixes it.
1 parent b6b9c65 commit 7202d3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/offlinePackagingTasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const offlinePackages = [
3535
export function getPackageName(packageJSON: any, vscodePlatformId: string) {
3636
const name = packageJSON.name;
3737
const version = packageJSON.version;
38-
return `${name}.${version}-${vscodePlatformId}.vsix`;
38+
return `${name}-${version}-${vscodePlatformId}.vsix`;
3939
}
4040

4141
gulp.task('vsix:release:package:platform-specific', async () => {

0 commit comments

Comments
 (0)