Преглед на файлове

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

HOME преди 5 години
родител
ревизия
98536917b9
променени са 4 файла, в които са добавени 12 реда и са изтрити 6 реда
  1. 1 0
      SMBLibrary.Win32/SMBLibrary.Win32.csproj
  2. 0 5
      SMBLibrary/SMBLibrary.csproj
  3. 8 0
      SMBServer/SMBServer.csproj
  4. 3 1
      SMBServer/SettingsHelper.cs

+ 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>

Файловите разлики са ограничени, защото са твърде много
+ 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;