2021-11-26 20:28:22 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-11-20 19:49:50 +00:00
|
|
|
|
<PropertyGroup>
|
2021-11-26 20:28:22 -05:00
|
|
|
|
<AssemblyTitle>Quantum Space Buddies</AssemblyTitle>
|
|
|
|
|
<Description>Multiplayer mod for Outer Wilds</Description>
|
2021-11-26 22:17:03 -05:00
|
|
|
|
<Product>Quantum Space Buddies</Product>
|
|
|
|
|
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
|
2020-02-10 23:03:28 +01:00
|
|
|
|
<ProjectGuid>{1F00090A-C697-4C55-B401-192F3CFB9DC2}</ProjectGuid>
|
2022-01-14 14:14:40 -08:00
|
|
|
|
<OutputPath Condition="Exists($(OwmlDir))">$(OwmlDir)\Mods\QSB</OutputPath>
|
2022-02-03 00:18:13 -08:00
|
|
|
|
<NoWarn>CS1998;CS0649</NoWarn>
|
2020-02-10 23:03:28 +01:00
|
|
|
|
</PropertyGroup>
|
2022-02-01 16:09:57 -08:00
|
|
|
|
<Target Name="weave qsb" BeforeTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command=""$(SolutionDir)\MirrorWeaver\bin\$(Configuration)\MirrorWeaver" "$(OutputPath)\QSB.dll" "$(SolutionDir)\UnityEngine"" />
|
2022-01-14 14:14:40 -08:00
|
|
|
|
</Target>
|
2021-05-03 22:40:52 +01:00
|
|
|
|
<PropertyGroup>
|
2021-11-26 22:17:03 -05:00
|
|
|
|
<PostBuildEvent Condition="Exists($(UnityAssetsDir)) and Exists($(GameDir)) and Exists($(OwmlDir))">
|
2022-02-02 20:44:36 -08:00
|
|
|
|
copy /y "$(OutputPath)\*.dll" "$(UnityAssetsDir)"
|
2022-02-01 22:44:01 +00:00
|
|
|
|
copy /y "$(GameDir)\OuterWilds_Data\Managed\Assembly-CSharp-firstpass.dll" "$(UnityAssetsDir)"
|
|
|
|
|
copy /y "$(GameDir)\OuterWilds_Data\Managed\Unity.InputSystem.dll" "$(UnityAssetsDir)"
|
|
|
|
|
copy /y "$(GameDir)\OuterWilds_Data\Managed\UnityEngine.UI.dll" "$(UnityAssetsDir)"
|
|
|
|
|
copy /y "$(GameDir)\OuterWilds_Data\Managed\EOS-SDK.dll" "$(UnityAssetsDir)"
|
|
|
|
|
copy /y "$(GameDir)\OuterWilds_Data\Managed\UniSense.dll" "$(UnityAssetsDir)"
|
|
|
|
|
copy /y "$(OwmlDir)\Autofac.dll" "$(UnityAssetsDir)"
|
|
|
|
|
copy /y "$(OwmlDir)\Newtonsoft.Json.dll" "$(UnityAssetsDir)"
|
|
|
|
|
copy /y "$(OwmlDir)\0Harmony.dll" "$(UnityAssetsDir)"
|
2022-02-02 20:44:36 -08:00
|
|
|
|
copy /y "$(OwmlDir)\MonoMod.*.dll" "$(UnityAssetsDir)"
|
|
|
|
|
copy /y "$(OwmlDir)\Mono.Cecil*.dll" "$(UnityAssetsDir)"
|
|
|
|
|
copy /y "$(OwmlDir)\OWML.*.dll" "$(UnityAssetsDir)"
|
2022-02-01 22:44:01 +00:00
|
|
|
|
copy /y "$(OwmlDir)\NAudio-Unity.dll" "$(UnityAssetsDir)"
|
|
|
|
|
</PostBuildEvent>
|
2021-11-26 20:28:22 -05:00
|
|
|
|
</PropertyGroup>
|
2020-02-10 23:03:28 +01:00
|
|
|
|
<ItemGroup>
|
2020-12-21 00:17:31 +01:00
|
|
|
|
<None Include="default-config.json">
|
2022-02-02 22:02:10 -08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2020-12-21 00:17:31 +01:00
|
|
|
|
</None>
|
|
|
|
|
<None Include="manifest.json">
|
2022-02-02 22:02:10 -08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2020-12-21 00:17:31 +01:00
|
|
|
|
</None>
|
2021-10-12 16:56:07 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2022-02-04 14:33:49 +00:00
|
|
|
|
<PackageReference Include="OuterWildsGameLibs" Version="1.1.12.168" IncludeAssets="compile" />
|
2022-01-15 21:32:27 -08:00
|
|
|
|
<Reference Include="..\Mirror\*.dll" />
|
2022-01-28 18:37:28 -08:00
|
|
|
|
<Reference Include="..\UniTask\*.dll" />
|
2022-02-05 18:52:24 -08:00
|
|
|
|
<ProjectReference Include="..\EpicOnlineTransport\EpicOnlineTransport.csproj" />
|
2022-01-15 21:49:59 -08:00
|
|
|
|
<ProjectReference Include="..\MirrorWeaver\MirrorWeaver.csproj" ReferenceOutputAssembly="false" />
|
2022-02-04 14:33:49 +00:00
|
|
|
|
<PackageReference Include="HarmonyX" Version="2.9.0" IncludeAssets="compile" />
|
|
|
|
|
<PackageReference Include="OWML" Version="2.3.2" IncludeAssets="compile" />
|
2021-11-26 20:28:22 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2021-11-26 21:43:28 -05:00
|
|
|
|
<None Update="AssetBundles\*">
|
2021-11-26 20:28:22 -05:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2021-10-12 21:03:21 +01:00
|
|
|
|
</ItemGroup>
|
2021-11-27 10:16:39 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="debugsettings.json">
|
2022-02-02 22:02:10 -08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2021-11-27 10:16:39 +00:00
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2021-11-29 17:23:35 -08:00
|
|
|
|
</Project>
|