Browse Source

More adjustments to get it loading in VS

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
cf7b8e4316
8 changed files with 39 additions and 9 deletions
  1. +25
    -7
      IPA.Injector/IPA.Injector.csproj
  2. +14
    -2
      IPA.Loader/IPA.Loader.csproj
  3. +0
    -0
      Refs/UnityEngine.CoreModule.Net4.dll
  4. +0
    -0
      Refs/UnityEngine.CoreModule.Net4.xml
  5. +0
    -0
      Refs/UnityEngine.Net4.dll
  6. +0
    -0
      Refs/UnityEngine.Net4.xml
  7. +0
    -0
      Refs/UnityEngine.UnityWebRequestModule.Net4.dll
  8. +0
    -0
      Refs/UnityEngine.UnityWebRequestModule.Net4.xml

+ 25
- 7
IPA.Injector/IPA.Injector.csproj View File

@ -47,8 +47,12 @@
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" Condition=" '$(Platform)' == 'Net4' " />
<Reference Include="System.Xml" />
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\Refs\UnityEngine.CoreModule.$(Platform).dll</HintPath>
<Reference Include="UnityEngine.CoreModule" Condition=" '$(Platform)' == 'Net4' ">
<HintPath>..\Refs\UnityEngine.CoreModule.Net4.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.CoreModule" Condition=" '$(Platform)' == 'Net3' ">
<HintPath>..\Refs\UnityEngine.CoreModule.Net3.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
@ -69,20 +73,34 @@
<Name>IPA.Loader</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="..\Libs\I18N.$(Platform).dll">
<ItemGroup Condition=" '$(Platform)' == 'Net4' " >
<Content Include="..\Libs\I18N.Net4.dll">
<Link>Libraries\Mono\I18N.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\Libs\I18N.West.$(Platform).dll">
<Content Include="..\Libs\I18N.West.Net4.dll">
<Link>Libraries\Mono\I18N.West.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\Libs\Microsoft.CSharp.dll" Condition=" '$(Platform)' == 'Net4' " >
<Content Include="..\Libs\Microsoft.CSharp.dll" >
<Link>Libraries\Mono\Microsoft.CSharp.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\Libs\System.Runtime.Serialization.$(Platform).dll">
<Content Include="..\Libs\System.Runtime.Serialization.Net4.dll">
<Link>Libraries\Mono\System.Runtime.Serialization.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'Net3' " >
<Content Include="..\Libs\I18N.Net3.dll">
<Link>Libraries\Mono\I18N.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\Libs\I18N.West.Net3.dll">
<Link>Libraries\Mono\I18N.West.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\Libs\System.Runtime.Serialization.Net3.dll">
<Link>Libraries\Mono\System.Runtime.Serialization.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>


+ 14
- 2
IPA.Loader/IPA.Loader.csproj View File

@ -54,12 +54,24 @@
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" Condition=" '$(Platform)' == 'Net4' " />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'Net4' " >
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\Refs\UnityEngine.CoreModule.Net4.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestModule">
<HintPath>..\Refs\UnityEngine.UnityWebRequestModule.Net4.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'Net3' " >
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\Refs\UnityEngine.CoreModule.$(Platform).dll</HintPath>
<HintPath>..\Refs\UnityEngine.CoreModule.Net3.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestModule">
<HintPath>..\Refs\UnityEngine.UnityWebRequestModule.$(Platform).dll</HintPath>
<HintPath>..\Refs\UnityEngine.UnityWebRequestModule.Net3.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>


Refs/UnityEngine.CoreModule.dll → Refs/UnityEngine.CoreModule.Net4.dll View File


Refs/UnityEngine.CoreModule.xml → Refs/UnityEngine.CoreModule.Net4.xml View File


Refs/UnityEngine.dll → Refs/UnityEngine.Net4.dll View File


Refs/UnityEngine.xml → Refs/UnityEngine.Net4.xml View File


Refs/UnityEngine.UnityWebRequestModule.dll → Refs/UnityEngine.UnityWebRequestModule.Net4.dll View File


Refs/UnityEngine.UnityWebRequestModule.xml → Refs/UnityEngine.UnityWebRequestModule.Net4.xml View File


Loading…
Cancel
Save