Skip to content

Commit

Permalink
Fix default output language (now C# 12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rpinski committed Nov 17, 2024
1 parent 6476841 commit 1783ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode-extension/src/decompiler/languageInfos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const languageInfos: { [key: string]: LanguageInfo } = {
},
};

export const DEFAULT_OUTPUT_LANGUAGE: LanguageName = LanguageName.CSharp_11;
export const DEFAULT_OUTPUT_LANGUAGE: LanguageName = LanguageName.CSharp_12;

export const languageFromDisplayName = (name?: string) =>
Object.entries(languageInfos).find(
Expand Down

0 comments on commit 1783ccb

Please sign in to comment.