This repository was archived by the owner on Jul 21, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +36
-6
lines changed Expand file tree Collapse file tree 6 files changed +36
-6
lines changed Original file line number Diff line number Diff line change 55 </PropertyGroup >
66
77 <PropertyGroup >
8- <AvaloniaVersion >0.9.0-preview7 </AvaloniaVersion >
8+ <AvaloniaVersion >0.9.0</AvaloniaVersion >
99 </PropertyGroup >
1010
1111</Project >
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ internal static class RevisionClass
3838 public const string Major = "5" ;
3939 public const string Minor = "0" ;
4040 public const string Build = "2" ;
41- public const string Revision = "0 " ;
42- public const string VersionName = "beta " ;
41+ public const string Revision = "1 " ;
42+ public const string VersionName = "rc " ;
4343
4444 public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision + "." + VersionName ;
4545}
Original file line number Diff line number Diff line change 729729 <data name =" CannotAnalyzeMissingRef" xml : space =" preserve" >
730730 <value >Entity could not be resolved. Cannot analyze entities from missing assembly references. Add the missing reference and try again.</value >
731731 </data >
732+ <data name =" DecompilerSettings.UseThrowExpressions" xml : space =" preserve" >
733+ <value >Use throw expressions</value >
734+ </data >
732735 <data name =" DecompilerSettings.AllowExtensionMethodSyntaxOnRef" xml : space =" preserve" >
733736 <value >Use 'ref' extension methods</value >
734737 </data >
738+ <data name =" AssemblySaveCodeDirectoryNotEmpty" xml : space =" preserve" >
739+ <value >The directory is not empty. File will be overwritten.
740+ Are you sure you want to continue?</value >
741+ </data >
742+ <data name =" AssemblySaveCodeDirectoryNotEmptyTitle" xml : space =" preserve" >
743+ <value >Project Directory not empty</value >
744+ </data >
745+ <data name =" HighlightMatchingBraces" xml : space =" preserve" >
746+ <value >Highlight matching braces</value >
747+ </data >
748+ <data name =" SelectLanguageDropdownTooltip" xml : space =" preserve" >
749+ <value >Select language to decompile to</value >
750+ </data >
751+ <data name =" SelectVersionDropdownTooltip" xml : space =" preserve" >
752+ <value >Select version of language to output</value >
753+ </data >
754+ <data name =" DecompilerSettings.RemoveDeadStores" xml : space =" preserve" >
755+ <value >Remove dead stores (use with caution!)</value >
756+ </data >
757+ <data name =" DecompilerSettings.AlwaysShowEnumMemberValues" xml : space =" preserve" >
758+ <value >Always show enum member values</value >
759+ </data >
735760</root >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >netcoreapp3.0 </TargetFramework >
4+ <TargetFramework >netcoreapp3.1 </TargetFramework >
55 <OutputType >WinExe</OutputType >
66
77 <TieredCompilation >true</TieredCompilation >
Original file line number Diff line number Diff line change @@ -42,7 +42,12 @@ public static AppBuilder BuildAvaloniaApp()
4242 Logger . Sink = new ProxyLogSink ( Logger . Sink ) ;
4343#endif
4444
45- return result . UsePlatformDetect ( ) ;
45+ return result
46+ . UsePlatformDetect ( )
47+ . With ( new X11PlatformOptions
48+ {
49+ UseDBusMenu = true
50+ } ) ;
4651 }
4752
4853 class ProxyLogSink : ILogSink
You can’t perform that action at this time.
0 commit comments