mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
commit
da9fe77cb7
@ -22,8 +22,17 @@ namespace Wabbajack.Launcher
|
||||
{
|
||||
public MainWindow()
|
||||
{
|
||||
DataContext = new MainWindowVM();
|
||||
InitializeComponent();
|
||||
try
|
||||
{
|
||||
DataContext = new MainWindowVM();
|
||||
}
|
||||
catch(Exception ex)
|
||||
{
|
||||
System.Console.Error.WriteLine("Error creating datacontext.");
|
||||
System.Console.Error.WriteLine(ex);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -13,6 +13,7 @@
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
<AssemblyName>Wabbajack</AssemblyName>
|
||||
<RootNamespace>Wabbajack</RootNamespace>
|
||||
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
@ -13,6 +13,7 @@
|
||||
<PublishReadyToRun>true</PublishReadyToRun>
|
||||
<StartupObject></StartupObject>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
Loading…
Reference in New Issue
Block a user