Skip to content

Commit 7cd9410

Browse files
committed
Project normalizing
1 parent 5e4711f commit 7cd9410

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

ModuleManager.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModuleManagerTests", "Sourc
99
EndProject
1010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestUtils", "Source\TestUtils\TestUtils.csproj", "{20EAAFE6-510D-4374-8D2F-6B52D0178E85}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestUtilsTests", "Source\TestUtilsTests\TestUtilsTests.csproj", "{E695C11F-4217-4014-9B51-7232A654C205}"
13-
EndProject
1412
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModuleManager", "Source\ModuleManager\ModuleManager.csproj", "{02C8E3AF-69F9-4102-AB60-DD6DE60662D3}"
1513
EndProject
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestUtilsTests", "Source\TestUtilsTests\TestUtilsTests.csproj", "{E695C11F-4217-4014-9B51-7232A654C205}"
15+
EndProject
1616
Global
1717
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1818
Debug|Any CPU = Debug|Any CPU
@@ -31,13 +31,13 @@ Global
3131
{20EAAFE6-510D-4374-8D2F-6B52D0178E85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3232
{20EAAFE6-510D-4374-8D2F-6B52D0178E85}.Debug|Any CPU.Build.0 = Debug|Any CPU
3333
{20EAAFE6-510D-4374-8D2F-6B52D0178E85}.Release|Any CPU.ActiveCfg = Release|Any CPU
34-
{E695C11F-4217-4014-9B51-7232A654C205}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
35-
{E695C11F-4217-4014-9B51-7232A654C205}.Debug|Any CPU.Build.0 = Debug|Any CPU
36-
{E695C11F-4217-4014-9B51-7232A654C205}.Release|Any CPU.ActiveCfg = Release|Any CPU
3734
{02C8E3AF-69F9-4102-AB60-DD6DE60662D4}.Release|Any CPU.ActiveCfg = Release|Any CPU
3835
{02C8E3AF-69F9-4102-AB60-DD6DE60662D4}.Release|Any CPU.Build.0 = Release|Any CPU
3936
{02C8E3AF-69F9-4102-AB60-DD6DE60662D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4037
{02C8E3AF-69F9-4102-AB60-DD6DE60662D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
38+
{E695C11F-4217-4014-9B51-7232A654C205}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39+
{E695C11F-4217-4014-9B51-7232A654C205}.Debug|Any CPU.Build.0 = Debug|Any CPU
40+
{E695C11F-4217-4014-9B51-7232A654C205}.Release|Any CPU.ActiveCfg = Release|Any CPU
4141
EndGlobalSection
4242
GlobalSection(SolutionProperties) = preSolution
4343
HideSolutionNode = FALSE

Source/ModuleManager/ModuleManager.12.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,10 @@
122122
<Compile Include="Utils\ConfigNodeEditUtils.cs" />
123123
</ItemGroup>
124124
<ItemGroup>
125-
<Reference Include="System" />
126-
<Reference Include="System.Drawing" />
125+
<Reference Include="System">
126+
</Reference>
127+
<Reference Include="System.Drawing">
128+
</Reference>
127129
<Reference Include="KSPe">
128130
<HintPath>..\..\..\..\..\..\LIB\plugins\KSPe.dll</HintPath>
129131
<Private>False</Private>

Source/ModuleManager/ModuleManager.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,10 @@
121121
<Compile Include="Utils\ConfigNodeEditUtils.cs" />
122122
</ItemGroup>
123123
<ItemGroup>
124-
<Reference Include="System" />
125-
<Reference Include="System.Drawing" />
124+
<Reference Include="System">
125+
</Reference>
126+
<Reference Include="System.Drawing">
127+
</Reference>
126128
<Reference Include="KSPe">
127129
<HintPath>..\..\..\..\..\..\LIB\plugins\KSPe.dll</HintPath>
128130
<Private>False</Private>

Source/TestUtils/TestUtils.csproj

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,15 @@
3434
<Prefer32Bit>false</Prefer32Bit>
3535
</PropertyGroup>
3636
<ItemGroup>
37-
<Reference Include="System" />
38-
<Reference Include="System.Core" />
39-
<Reference Include="System.Xml.Linq" />
40-
<Reference Include="System.Data.DataSetExtensions" />
41-
<Reference Include="System.Data" />
42-
<Reference Include="System.Xml" />
37+
<Reference Include="System">
38+
</Reference>
4339
<Reference Include="Assembly-CSharp">
44-
<HintPath>..\..\..\..\..\LIB\managed\1.4.1\Assembly-CSharp.dll</HintPath>
40+
<HintPath>..\..\..\..\..\..\LIB\managed\1.4.1\Assembly-CSharp.dll</HintPath>
41+
<Private>False</Private>
4542
</Reference>
4643
<Reference Include="UnityEngine">
47-
<HintPath>..\..\..\..\..\LIB\managed\1.4.1\UnityEngine.dll</HintPath>
44+
<HintPath>..\..\..\..\..\..\LIB\managed\1.4.1\UnityEngine.dll</HintPath>
45+
<Private>False</Private>
4846
</Reference>
4947
</ItemGroup>
5048
<ItemGroup>

0 commit comments

Comments
 (0)