Kaynağa Gözat

commit: fix crash when missing Config section in settings; change ILRepack behavior on release build

HOME 5 yıl önce
ebeveyn
işleme
98536917b9

+ 1 - 0
SMBLibrary.Win32/SMBLibrary.Win32.csproj

@@ -13,6 +13,7 @@
 
   <ItemGroup>
     <ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj" />
+    <ProjectReference Include="..\Utilities\Utilities.csproj" />
   </ItemGroup>
   
   <ItemGroup Condition="'$(Configuration)' != 'Release'">

+ 0 - 5
SMBLibrary/SMBLibrary.csproj

@@ -15,9 +15,4 @@
   <ItemGroup>
     <ProjectReference Include="..\Utilities\Utilities.csproj" PrivateAssets="All" />
   </ItemGroup>
-
-  <Target Name="ILRepack" Condition="'$(Configuration)' == 'Release'" AfterTargets="AfterBuild">
-    <Exec Command="&quot;$(ProgramW6432)\ILRepack\ILRepack.exe&quot; /out=&quot;$(OutputPath)\SMBLibrary.dll&quot; &quot;$(OutputPath)\SMBLibrary.dll&quot; &quot;$(OutputPath)\Utilities.dll&quot;"></Exec>
-  </Target>
-
 </Project>

Dosya farkı çok büyük olduğundan ihmal edildi
+ 8 - 0
SMBServer/SMBServer.csproj


+ 3 - 1
SMBServer/SettingsHelper.cs

@@ -89,8 +89,10 @@ namespace SMBServer
         {
             var document = ReadSettingsXML();
             var configs = document.SelectSingleNode("Settings/Configs");
-
+            
             var dic = new Dictionary<string, string>();
+            if (null == configs) return dic;
+
             foreach (XmlElement element in configs)
             {
                 var key = element.Attributes["Key"]?.Value;