Browse Source

Clean up csproj formatting

habeebweeb 1 year ago
parent
commit
f40b08a3a0

+ 5 - 0
src/MeidoPhotoStudio.Converter/MeidoPhotoStudio.Converter.csproj

@@ -1,8 +1,10 @@
 <Project Sdk="Microsoft.NET.Sdk">
+
   <PropertyGroup>
     <ProjectGuid>{19D28B0C-3537-4FEE-B7B3-1ABF70B16D5E}</ProjectGuid>
     <Nullable>enable</Nullable>
   </PropertyGroup>
+
   <ItemGroup>
     <Reference Include="..\..\lib\Assembly-CSharp.dll" />
     <Reference Include="..\..\lib\Assembly-CSharp-firstpass.dll" />
@@ -11,10 +13,13 @@
     <Reference Include="..\..\lib\ExIni.dll" />
     <Reference Include="..\..\lib\BepInEx.dll" />
   </ItemGroup>
+
   <ItemGroup>
     <ProjectReference Include="..\MeidoPhotoStudio.Plugin\MeidoPhotoStudio.Plugin.csproj" />
   </ItemGroup>
+
   <ItemGroup>
     <PackageReference Include="LZMA-SDK" Version="18.1.0" />
   </ItemGroup>
+
 </Project>

+ 25 - 23
src/MeidoPhotoStudio.Plugin/MeidoPhotoStudio.Plugin.csproj

@@ -1,28 +1,30 @@
 <Project Sdk="Microsoft.NET.Sdk">
-    <PropertyGroup>
-        <Configurations>Debug;Release</Configurations>
-        <Platforms>AnyCPU</Platforms>
-    </PropertyGroup>
 
-    <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
-        <DefineConstants>DEBUG;TRACE</DefineConstants>
-    </PropertyGroup>
+  <PropertyGroup>
+    <Configurations>Debug;Release</Configurations>
+    <Platforms>AnyCPU</Platforms>
+  </PropertyGroup>
 
-    <ItemGroup>
-        <Reference Include="..\..\lib\Assembly-CSharp.dll" />
-        <Reference Include="..\..\lib\Assembly-CSharp-firstpass.dll" />
-        <Reference Include="..\..\lib\Assembly-UnityScript-firstpass.dll" />
-        <Reference Include="..\..\lib\UnityEngine.dll" />
-        <Reference Include="..\..\lib\UnityEngine.UI.dll" />
-        <Reference Include="..\..\lib\Newtonsoft.Json.dll" />
-        <Reference Include="..\..\lib\Ionic.Zlib.dll" />
-        <Reference Include="..\..\lib\BepInEx.dll" />
-        <Reference Include="..\..\lib\0Harmony.dll" />
-    </ItemGroup>
+  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+  </PropertyGroup>
+
+  <ItemGroup>
+    <Reference Include="..\..\lib\Assembly-CSharp.dll" />
+    <Reference Include="..\..\lib\Assembly-CSharp-firstpass.dll" />
+    <Reference Include="..\..\lib\Assembly-UnityScript-firstpass.dll" />
+    <Reference Include="..\..\lib\UnityEngine.dll" />
+    <Reference Include="..\..\lib\UnityEngine.UI.dll" />
+    <Reference Include="..\..\lib\Newtonsoft.Json.dll" />
+    <Reference Include="..\..\lib\Ionic.Zlib.dll" />
+    <Reference Include="..\..\lib\BepInEx.dll" />
+    <Reference Include="..\..\lib\0Harmony.dll" />
+  </ItemGroup>
+
+  <ItemGroup>
+    <Content Include="Config\**">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </Content>
+  </ItemGroup>
 
-    <ItemGroup>
-        <Content Include="Config\**">
-            <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
-        </Content>
-    </ItemGroup>
 </Project>