mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-12-11 20:15:10 +01:00
just use one Lib folder for dlls
This commit is contained in:
parent
7611711206
commit
e9941ca46a
@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project>
|
||||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OwmlDir>$(AppData)\OuterWildsModManager\OWML</OwmlDir>
|
<OwmlDir>$(AppData)\OuterWildsModManager\OWML</OwmlDir>
|
||||||
<UnityAssetsDir>$(SolutionDir)\qsb-unityproject\Assets</UnityAssetsDir>
|
<UnityAssetsDir>$(SolutionDir)\qsb-unityproject\Assets</UnityAssetsDir>
|
||||||
|
|||||||
@ -18,6 +18,6 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="OuterWildsGameLibs" Version="1.1.13.457" IncludeAssets="compile" />
|
<PackageReference Include="OuterWildsGameLibs" Version="1.1.13.457" IncludeAssets="compile" />
|
||||||
<Reference Include="../Mirror/*.dll" />
|
<Reference Include="..\Lib\*.dll" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@ -19,6 +19,6 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="OuterWildsGameLibs" Version="1.1.13.457" />
|
<PackageReference Include="OuterWildsGameLibs" Version="1.1.13.457" />
|
||||||
<PackageReference Include="OWML" Version="2.9.7" />
|
<PackageReference Include="OWML" Version="2.9.7" />
|
||||||
<Reference Include="../Mirror/*.dll" />
|
<Reference Include="..\Lib\*.dll" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@ -31,8 +31,8 @@
|
|||||||
<Target Name="copy dlls to unity" AfterTargets="PostBuildEvent" Condition="Exists('$(UnityDllsDir)')">
|
<Target Name="copy dlls to unity" AfterTargets="PostBuildEvent" Condition="Exists('$(UnityDllsDir)')">
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_Files Remove="@(_Files)" />
|
<_Files Remove="@(_Files)" />
|
||||||
<_Files Include="$(OutputPath)\*.dll" />
|
<_Files Include="$(OutputPath)/*.dll" />
|
||||||
<_Files Include="$(OutputPath)\*.exe" />
|
<_Files Include="$(OutputPath)/*.exe" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Copy SourceFiles="@(_Files)" DestinationFolder="$(UnityDllsDir)" />
|
<Copy SourceFiles="@(_Files)" DestinationFolder="$(UnityDllsDir)" />
|
||||||
</Target>
|
</Target>
|
||||||
@ -73,8 +73,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="OuterWildsGameLibs" Version="1.1.13.457" IncludeAssets="compile" />
|
<PackageReference Include="OuterWildsGameLibs" Version="1.1.13.457" IncludeAssets="compile" />
|
||||||
<PackageReference Include="OWML" Version="2.9.7" IncludeAssets="compile" />
|
<PackageReference Include="OWML" Version="2.9.7" IncludeAssets="compile" />
|
||||||
<Reference Include="..\Mirror\*.dll" />
|
<Reference Include="..\Lib\*.dll" />
|
||||||
<Reference Include="..\UniTask\*.dll" />
|
|
||||||
<ProjectReference Include="..\FizzySteamworks\FizzySteamworks.csproj" />
|
<ProjectReference Include="..\FizzySteamworks\FizzySteamworks.csproj" />
|
||||||
<ProjectReference Include="..\SteamRerouter\SteamRerouter.csproj" />
|
<ProjectReference Include="..\SteamRerouter\SteamRerouter.csproj" />
|
||||||
<ProjectReference Include="..\MirrorWeaver\MirrorWeaver.csproj" ReferenceOutputAssembly="false" />
|
<ProjectReference Include="..\MirrorWeaver\MirrorWeaver.csproj" ReferenceOutputAssembly="false" />
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user