Browse Source

Added Net3 meta project to solution

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
deb5b70545
6 changed files with 273 additions and 7 deletions
  1. +1
    -0
      .gitignore
  2. +100
    -0
      BSIPA-Meta/BSIPA-Net3-Meta.csproj
  3. +1
    -1
      BSIPA-Meta/BSIPA-Net4-Meta.csproj
  4. +168
    -1
      BSIPA.sln
  5. +3
    -4
      IPA.Injector/IPA.Injector.Net3.csproj
  6. +0
    -1
      IPA.Loader/IPA.Loader.Net3.csproj

+ 1
- 0
.gitignore View File

@ -19,6 +19,7 @@ x64/
x86/
bld/
[Bb]in/
[Bb]in3/
[Oo]bj/
[Ll]og/


+ 100
- 0
BSIPA-Meta/BSIPA-Net3-Meta.csproj View File

@ -0,0 +1,100 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Assemble" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug_Net3</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{6B5B2727-C35C-4813-BC80-D206C58AB029}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>BSIPA_Net3_Meta</RootNamespace>
<AssemblyName>Net3 Meta Project</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
<ProxyPlatform>Win32</ProxyPlatform>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x64' ">
<ProxyPlatform>x64</ProxyPlatform>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug_Net3' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug_Net3\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<OtherConfig>Debug</OtherConfig>
<ProxyConfig>Release</ProxyConfig>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release_Net3' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release_Net3\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<OtherConfig>Release</OtherConfig>
<ProxyConfig>Release</ProxyConfig>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Verbose_Net3' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Verbose_Net3\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<OtherConfig>Verbose</OtherConfig>
<ProxyConfig>Verbose_Release</ProxyConfig>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Verbose_Release_Net3' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Verbose_Release_Net3\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<OtherConfig>Verbose_Release</OtherConfig>
<ProxyConfig>Verbose_Release</ProxyConfig>
</PropertyGroup>
<Target Name="Clean">
<ItemGroup>
<Files Include="$(OutputPath)**\*" />
</ItemGroup>
<Delete Files="@(Files)" />
</Target>
<Target Name="Rebuild">
<CallTarget Targets="Assemble" />
</Target>
<Target Name="Build">
<CallTarget Targets="Assemble" />
</Target>
<Target Name="Assemble" Returns="$(OutputPath)">
<Message Text="Packing..." Importance="High" />
<Message Text="Results will be put in $(OutputPath)" Importance="High" />
<ItemGroup>
<InputDlls Include="$(SolutionDir)IPA.Injector\bin3\$(OtherConfig)\**\*" Exclude="$(SolutionDir)IPA.Injector\bin3\$(OtherConfig)\Libraries\**\*" />
<InputDlls Include="$(SolutionDir)Doorstop\Proxy\bin\$(ProxyPlatform)\$(ProxyConfig)\**\*.dll" />
<InputDlls Include="$(SolutionDir)Doorstop\Proxy\bin\$(ProxyPlatform)\$(ProxyConfig)\**\*.pdb" />
<InputIPAFiles Include="$(SolutionDir)IPA\bin\$(OtherConfig)\**\*" />
</ItemGroup>
<Copy SourceFiles="@(InputDlls)" DestinationFolder="$(OutputPath)IPA\%(RecursiveDir)" />
<Move SourceFiles="$(OutputPath)IPA\proxy.dll" DestinationFiles="$(OutputPath)IPA\winhttp.dll" />
<Move Condition="Exists('$(OutputPath)IPA\proxy.pdb')" SourceFiles="$(OutputPath)IPA\proxy.pdb" DestinationFiles="$(OutputPath)IPA\winhttp.pdb" />
<Copy SourceFiles="@(InputIPAFiles)" DestinationFolder="$(OutputPath)%(RecursiveDir)" />
<ItemGroup>
<BadFiles Include="$(OutputPath)*.dll" />
<BadFiles Include="$(OutputPath)*.pdb" Condition="'$(Configuration)'=='Release_Net3' Or '$(Configuration)'=='Verbose_Release_Net3'" />
<BadFiles Include="$(OutputPath)IPA\*.pdb" Condition="'$(Configuration)'=='Release_Net4' Or '$(Configuration)'=='Verbose_Release_Net3'" />
</ItemGroup>
<Delete Files="@(BadFiles)" />
<RemoveDir Directories="$(OutputPath)Libraries\" />
</Target>
</Project>

BSIPA-Net4-Meta/BSIPA-Net4-Meta.csproj → BSIPA-Meta/BSIPA-Net4-Meta.csproj View File

@ -6,7 +6,7 @@
<ProjectGuid>{880A3560-82CD-4836-996B-11BEFE6B44DB}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>BSIPA_Net4_Meta</RootNamespace>
<AssemblyName>BSIPA-Net4-Meta</AssemblyName>
<AssemblyName>Net4 Meta Project</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

+ 168
- 1
BSIPA.sln View File

@ -42,7 +42,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BSIPA-ModList", "BSIPA-ModL
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F} = {5F33B310-DC8D-4C0D-877E-BAC3908DE10F}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BSIPA-Net4-Meta", "BSIPA-Net4-Meta\BSIPA-Net4-Meta.csproj", "{880A3560-82CD-4836-996B-11BEFE6B44DB}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BSIPA-Net4-Meta", "BSIPA-Meta\BSIPA-Net4-Meta.csproj", "{880A3560-82CD-4836-996B-11BEFE6B44DB}"
ProjectSection(ProjectDependencies) = postProject
{88609E16-731F-46C9-8139-6B1A7A83240D} = {88609E16-731F-46C9-8139-6B1A7A83240D}
{14092533-98BB-40A4-9AFC-27BB75672A70} = {14092533-98BB-40A4-9AFC-27BB75672A70}
@ -53,154 +53,321 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IPA.Injector.Net3", "IPA.In
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IPA.Loader.Net3", "IPA.Loader\IPA.Loader.Net3.csproj", "{938EE019-7BBF-406A-ACBA-5AC55AA74510}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BSIPA-Net3-Meta", "BSIPA-Meta\BSIPA-Net3-Meta.csproj", "{6B5B2727-C35C-4813-BC80-D206C58AB029}"
ProjectSection(ProjectDependencies) = postProject
{88609E16-731F-46C9-8139-6B1A7A83240D} = {88609E16-731F-46C9-8139-6B1A7A83240D}
{14092533-98BB-40A4-9AFC-27BB75672A70} = {14092533-98BB-40A4-9AFC-27BB75672A70}
{43D197F0-CB54-403F-B167-7236DA9FC65C} = {43D197F0-CB54-403F-B167-7236DA9FC65C}
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug_Net3|x64 = Debug_Net3|x64
Debug_Net3|x86 = Debug_Net3|x86
Debug_Net4|x64 = Debug_Net4|x64
Debug_Net4|x86 = Debug_Net4|x86
Release_Net3|x64 = Release_Net3|x64
Release_Net3|x86 = Release_Net3|x86
Release_Net4|x64 = Release_Net4|x64
Release_Net4|x86 = Release_Net4|x86
Verbose_Net3|x64 = Verbose_Net3|x64
Verbose_Net3|x86 = Verbose_Net3|x86
Verbose_Net4|x64 = Verbose_Net4|x64
Verbose_Net4|x86 = Verbose_Net4|x86
Verbose_Release_Net3|x64 = Verbose_Release_Net3|x64
Verbose_Release_Net3|x86 = Verbose_Release_Net3|x86
Verbose_Release_Net4|x64 = Verbose_Release_Net4|x64
Verbose_Release_Net4|x86 = Verbose_Release_Net4|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{14092533-98BB-40A4-9AFC-27BB75672A70}.Debug_Net3|x64.ActiveCfg = Debug|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Debug_Net3|x64.Build.0 = Debug|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Debug_Net3|x86.ActiveCfg = Debug|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Debug_Net3|x86.Build.0 = Debug|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Debug_Net4|x64.ActiveCfg = Debug|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Debug_Net4|x64.Build.0 = Debug|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Debug_Net4|x86.ActiveCfg = Debug|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Debug_Net4|x86.Build.0 = Debug|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Release_Net3|x64.ActiveCfg = Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Release_Net3|x64.Build.0 = Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Release_Net3|x86.ActiveCfg = Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Release_Net3|x86.Build.0 = Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Release_Net4|x64.ActiveCfg = Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Release_Net4|x64.Build.0 = Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Release_Net4|x86.ActiveCfg = Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Release_Net4|x86.Build.0 = Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Net3|x64.ActiveCfg = Verbose|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Net3|x64.Build.0 = Verbose|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Net3|x86.ActiveCfg = Verbose|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Net3|x86.Build.0 = Verbose|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Net4|x64.ActiveCfg = Verbose|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Net4|x64.Build.0 = Verbose|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Net4|x86.ActiveCfg = Verbose|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Net4|x86.Build.0 = Verbose|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Release_Net3|x64.ActiveCfg = Verbose_Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Release_Net3|x64.Build.0 = Verbose_Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Release_Net3|x86.ActiveCfg = Verbose_Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Release_Net3|x86.Build.0 = Verbose_Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Release_Net4|x64.ActiveCfg = Verbose_Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Release_Net4|x64.Build.0 = Verbose_Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Release_Net4|x86.ActiveCfg = Verbose_Release|Any CPU
{14092533-98BB-40A4-9AFC-27BB75672A70}.Verbose_Release_Net4|x86.Build.0 = Verbose_Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Debug_Net3|x64.ActiveCfg = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Debug_Net3|x86.ActiveCfg = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Debug_Net4|x64.ActiveCfg = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Debug_Net4|x64.Build.0 = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Debug_Net4|x86.ActiveCfg = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Debug_Net4|x86.Build.0 = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Release_Net3|x64.ActiveCfg = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Release_Net3|x86.ActiveCfg = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Release_Net4|x64.ActiveCfg = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Release_Net4|x64.Build.0 = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Release_Net4|x86.ActiveCfg = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Release_Net4|x86.Build.0 = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Net3|x64.ActiveCfg = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Net3|x86.ActiveCfg = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Net4|x64.ActiveCfg = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Net4|x64.Build.0 = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Net4|x86.ActiveCfg = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Net4|x86.Build.0 = Debug|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Release_Net3|x64.ActiveCfg = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Release_Net3|x86.ActiveCfg = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Release_Net4|x64.ActiveCfg = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Release_Net4|x64.Build.0 = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Release_Net4|x86.ActiveCfg = Release|Any CPU
{5AD344F0-01A0-4CA8-92E5-9D095737744D}.Verbose_Release_Net4|x86.Build.0 = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Debug_Net3|x64.ActiveCfg = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Debug_Net3|x86.ActiveCfg = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Debug_Net4|x64.ActiveCfg = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Debug_Net4|x64.Build.0 = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Debug_Net4|x86.ActiveCfg = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Debug_Net4|x86.Build.0 = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Release_Net3|x64.ActiveCfg = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Release_Net3|x86.ActiveCfg = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Release_Net4|x64.ActiveCfg = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Release_Net4|x64.Build.0 = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Release_Net4|x86.ActiveCfg = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Release_Net4|x86.Build.0 = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Net3|x64.ActiveCfg = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Net3|x86.ActiveCfg = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Net4|x64.ActiveCfg = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Net4|x64.Build.0 = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Net4|x86.ActiveCfg = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Net4|x86.Build.0 = Debug|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Release_Net3|x64.ActiveCfg = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Release_Net3|x86.ActiveCfg = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Release_Net4|x64.ActiveCfg = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Release_Net4|x64.Build.0 = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Release_Net4|x86.ActiveCfg = Release|Any CPU
{2A1AF16B-27F1-46E0-9A95-181516BC1CB7}.Verbose_Release_Net4|x86.Build.0 = Release|Any CPU
{88609E16-731F-46C9-8139-6B1A7A83240D}.Debug_Net3|x64.ActiveCfg = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Debug_Net3|x64.Build.0 = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Debug_Net3|x86.ActiveCfg = Verbose_Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Debug_Net3|x86.Build.0 = Verbose_Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Debug_Net4|x64.ActiveCfg = Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Debug_Net4|x64.Build.0 = Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Debug_Net4|x86.ActiveCfg = Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Debug_Net4|x86.Build.0 = Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Release_Net3|x64.ActiveCfg = Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Release_Net3|x64.Build.0 = Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Release_Net3|x86.ActiveCfg = Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Release_Net3|x86.Build.0 = Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Release_Net4|x64.ActiveCfg = Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Release_Net4|x64.Build.0 = Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Release_Net4|x86.ActiveCfg = Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Release_Net4|x86.Build.0 = Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Net3|x64.ActiveCfg = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Net3|x64.Build.0 = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Net3|x86.ActiveCfg = Verbose_Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Net3|x86.Build.0 = Verbose_Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Net4|x64.ActiveCfg = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Net4|x64.Build.0 = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Net4|x86.ActiveCfg = Verbose_Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Net4|x86.Build.0 = Verbose_Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Release_Net3|x64.ActiveCfg = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Release_Net3|x64.Build.0 = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Release_Net3|x86.ActiveCfg = Verbose_Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Release_Net3|x86.Build.0 = Verbose_Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Release_Net4|x64.ActiveCfg = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Release_Net4|x64.Build.0 = Verbose_Release|x64
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Release_Net4|x86.ActiveCfg = Verbose_Release|Win32
{88609E16-731F-46C9-8139-6B1A7A83240D}.Verbose_Release_Net4|x86.Build.0 = Verbose_Release|Win32
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Debug_Net3|x64.ActiveCfg = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Debug_Net3|x64.Build.0 = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Debug_Net3|x86.ActiveCfg = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Debug_Net3|x86.Build.0 = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Debug_Net4|x64.ActiveCfg = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Debug_Net4|x64.Build.0 = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Debug_Net4|x86.ActiveCfg = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Debug_Net4|x86.Build.0 = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Release_Net3|x64.ActiveCfg = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Release_Net3|x64.Build.0 = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Release_Net3|x86.ActiveCfg = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Release_Net3|x86.Build.0 = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Release_Net4|x64.ActiveCfg = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Release_Net4|x86.ActiveCfg = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Net3|x64.ActiveCfg = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Net3|x64.Build.0 = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Net3|x86.ActiveCfg = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Net3|x86.Build.0 = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Net4|x64.ActiveCfg = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Net4|x64.Build.0 = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Net4|x86.ActiveCfg = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Net4|x86.Build.0 = Debug|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Release_Net3|x64.ActiveCfg = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Release_Net3|x64.Build.0 = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Release_Net3|x86.ActiveCfg = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Release_Net3|x86.Build.0 = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Release_Net4|x64.ActiveCfg = Release|Any CPU
{5F33B310-DC8D-4C0D-877E-BAC3908DE10F}.Verbose_Release_Net4|x86.ActiveCfg = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Debug_Net3|x64.ActiveCfg = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Debug_Net3|x64.Build.0 = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Debug_Net3|x86.ActiveCfg = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Debug_Net3|x86.Build.0 = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Debug_Net4|x64.ActiveCfg = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Debug_Net4|x64.Build.0 = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Debug_Net4|x86.ActiveCfg = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Debug_Net4|x86.Build.0 = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Release_Net3|x64.ActiveCfg = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Release_Net3|x64.Build.0 = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Release_Net3|x86.ActiveCfg = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Release_Net3|x86.Build.0 = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Release_Net4|x64.ActiveCfg = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Release_Net4|x64.Build.0 = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Release_Net4|x86.ActiveCfg = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Release_Net4|x86.Build.0 = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Net3|x64.ActiveCfg = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Net3|x64.Build.0 = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Net3|x86.ActiveCfg = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Net3|x86.Build.0 = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Net4|x64.ActiveCfg = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Net4|x64.Build.0 = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Net4|x86.ActiveCfg = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Net4|x86.Build.0 = Debug|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Release_Net3|x64.ActiveCfg = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Release_Net3|x64.Build.0 = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Release_Net3|x86.ActiveCfg = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Release_Net3|x86.Build.0 = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Release_Net4|x64.ActiveCfg = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Release_Net4|x64.Build.0 = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Release_Net4|x86.ActiveCfg = Release|Any CPU
{E2CCDD2F-1D4F-4B06-9CD4-E0D2B9AE543A}.Verbose_Release_Net4|x86.Build.0 = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Debug_Net3|x64.ActiveCfg = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Debug_Net3|x86.ActiveCfg = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Debug_Net4|x64.ActiveCfg = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Debug_Net4|x64.Build.0 = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Debug_Net4|x86.ActiveCfg = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Release_Net3|x64.ActiveCfg = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Release_Net3|x86.ActiveCfg = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Release_Net4|x64.ActiveCfg = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Release_Net4|x64.Build.0 = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Release_Net4|x86.ActiveCfg = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Net3|x64.ActiveCfg = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Net3|x86.ActiveCfg = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Net4|x64.ActiveCfg = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Net4|x64.Build.0 = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Net4|x86.ActiveCfg = Debug|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Release_Net3|x64.ActiveCfg = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Release_Net3|x86.ActiveCfg = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Release_Net4|x64.ActiveCfg = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Release_Net4|x64.Build.0 = Release|Any CPU
{23AB2621-A05C-4377-8418-85E6012C0BBE}.Verbose_Release_Net4|x86.ActiveCfg = Release|Any CPU
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Debug_Net3|x64.ActiveCfg = Debug_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Debug_Net3|x86.ActiveCfg = Debug_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Debug_Net4|x64.ActiveCfg = Debug_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Debug_Net4|x64.Build.0 = Debug_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Debug_Net4|x86.ActiveCfg = Debug_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Debug_Net4|x86.Build.0 = Debug_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Release_Net3|x64.ActiveCfg = Release_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Release_Net3|x86.ActiveCfg = Release_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Release_Net4|x64.ActiveCfg = Release_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Release_Net4|x64.Build.0 = Release_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Release_Net4|x86.ActiveCfg = Release_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Release_Net4|x86.Build.0 = Release_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Net3|x64.ActiveCfg = Verbose_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Net3|x86.ActiveCfg = Verbose_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Net4|x64.ActiveCfg = Verbose_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Net4|x64.Build.0 = Verbose_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Net4|x86.ActiveCfg = Verbose_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Net4|x86.Build.0 = Verbose_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Release_Net3|x64.ActiveCfg = Verbose_Release_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Release_Net3|x86.ActiveCfg = Verbose_Release_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Release_Net4|x64.ActiveCfg = Verbose_Release_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Release_Net4|x64.Build.0 = Verbose_Release_Net4|x64
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Release_Net4|x86.ActiveCfg = Verbose_Release_Net4|x86
{880A3560-82CD-4836-996B-11BEFE6B44DB}.Verbose_Release_Net4|x86.Build.0 = Verbose_Release_Net4|x86
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Debug_Net3|x64.ActiveCfg = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Debug_Net3|x64.Build.0 = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Debug_Net3|x86.ActiveCfg = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Debug_Net3|x86.Build.0 = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Debug_Net4|x64.ActiveCfg = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Debug_Net4|x86.ActiveCfg = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Release_Net3|x64.ActiveCfg = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Release_Net3|x64.Build.0 = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Release_Net3|x86.ActiveCfg = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Release_Net3|x86.Build.0 = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Release_Net4|x64.ActiveCfg = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Release_Net4|x86.ActiveCfg = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Net3|x64.ActiveCfg = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Net3|x64.Build.0 = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Net3|x86.ActiveCfg = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Net3|x86.Build.0 = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Net4|x64.ActiveCfg = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Net4|x86.ActiveCfg = Debug|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Release_Net3|x64.ActiveCfg = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Release_Net3|x64.Build.0 = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Release_Net3|x86.ActiveCfg = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Release_Net3|x86.Build.0 = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Release_Net4|x64.ActiveCfg = Release|Any CPU
{43D197F0-CB54-403F-B167-7236DA9FC65C}.Verbose_Release_Net4|x86.ActiveCfg = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Debug_Net3|x64.ActiveCfg = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Debug_Net3|x64.Build.0 = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Debug_Net3|x86.ActiveCfg = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Debug_Net3|x86.Build.0 = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Debug_Net4|x64.ActiveCfg = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Debug_Net4|x86.ActiveCfg = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Release_Net3|x64.ActiveCfg = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Release_Net3|x64.Build.0 = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Release_Net3|x86.ActiveCfg = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Release_Net3|x86.Build.0 = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Release_Net4|x64.ActiveCfg = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Release_Net4|x86.ActiveCfg = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Net3|x64.ActiveCfg = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Net3|x64.Build.0 = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Net3|x86.ActiveCfg = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Net3|x86.Build.0 = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Net4|x64.ActiveCfg = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Net4|x86.ActiveCfg = Debug|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Release_Net3|x64.ActiveCfg = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Release_Net3|x64.Build.0 = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Release_Net3|x86.ActiveCfg = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Release_Net3|x86.Build.0 = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Release_Net4|x64.ActiveCfg = Release|Any CPU
{938EE019-7BBF-406A-ACBA-5AC55AA74510}.Verbose_Release_Net4|x86.ActiveCfg = Release|Any CPU
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Debug_Net3|x64.ActiveCfg = Debug_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Debug_Net3|x64.Build.0 = Debug_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Debug_Net3|x86.ActiveCfg = Debug_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Debug_Net3|x86.Build.0 = Debug_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Debug_Net4|x64.ActiveCfg = Debug_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Debug_Net4|x86.ActiveCfg = Debug_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Release_Net3|x64.ActiveCfg = Release_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Release_Net3|x64.Build.0 = Release_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Release_Net3|x86.ActiveCfg = Release_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Release_Net3|x86.Build.0 = Release_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Release_Net4|x64.ActiveCfg = Release_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Release_Net4|x86.ActiveCfg = Release_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Net3|x64.ActiveCfg = Verbose_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Net3|x64.Build.0 = Verbose_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Net3|x86.ActiveCfg = Verbose_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Net3|x86.Build.0 = Verbose_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Net4|x64.ActiveCfg = Verbose_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Net4|x86.ActiveCfg = Verbose_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Release_Net3|x64.ActiveCfg = Verbose_Release_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Release_Net3|x64.Build.0 = Verbose_Release_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Release_Net3|x86.ActiveCfg = Verbose_Release_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Release_Net3|x86.Build.0 = Verbose_Release_Net3|x86
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Release_Net4|x64.ActiveCfg = Verbose_Release_Net3|x64
{6B5B2727-C35C-4813-BC80-D206C58AB029}.Verbose_Release_Net4|x86.ActiveCfg = Verbose_Release_Net3|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE


+ 3
- 4
IPA.Injector/IPA.Injector.Net3.csproj View File

@ -36,7 +36,6 @@
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
@ -48,9 +47,9 @@
<Compile Include="**\*.cs" Exclude="obj\**\*.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\IPA.Loader\IPA.Loader.net3.csproj">
<Project>{5ad344f0-01a0-4ca8-92e5-9d095737744d}</Project>
<Name>IPA.Loader</Name>
<ProjectReference Include="..\IPA.Loader\IPA.Loader.Net3.csproj">
<Project>{938EE019-7BBF-406A-ACBA-5AC55AA74510}</Project>
<Name>IPA.Loader.Net3</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>


+ 0
- 1
IPA.Loader/IPA.Loader.Net3.csproj View File

@ -42,7 +42,6 @@
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\Refs\UnityEngine.CoreModule.net3.dll</HintPath>


Loading…
Cancel
Save