Skip to content
This repository was archived by the owner on Oct 9, 2024. It is now read-only.

Commit a37ee7b

Browse files
committed
Remove headless dependency, fixes #2
1 parent 08e7f25 commit a37ee7b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Outflow.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,25 @@
2020

2121
<!--This will test for the default Steam installation paths for Resonite on Windows and Linux.-->
2222
<PropertyGroup Condition="'$(ResonitePath)'==''">
23-
<ResonitePath Condition="'$(OS)' == 'Windows_NT' and Exists('C:\Program Files (x86)\Steam\steamapps\common\Resonite\')">C:\Program Files (x86)\Steam\steamapps\common\Resonite\</ResonitePath>
23+
<ResonitePath Condition="'$(OS)' == 'Windows_NT' and Exists('C:/Program Files (x86)/Steam/steamapps/common/Resonite/')">C:/Program Files (x86)/Steam/steamapps/common/Resonite/</ResonitePath>
2424
<ResonitePath Condition="'$(OS)' != 'Windows_NT' and Exists('$(HOME)/.local/share/Steam/steamapps/common/Resonite/')">$(HOME)/.local/share/Steam/steamapps/common/Resonite/</ResonitePath>
2525
<!--If neither path above exists, you can define your custom Resonite install directory here -->
2626
<ResonitePath Condition="'$(ResonitePath)'==''">/Custom/Resonite/Install/Path</ResonitePath>
27-
<HeadlessPath>$(ResonitePath)Headless\</HeadlessPath>
27+
<!--HeadlessPath>$(ResonitePath)Headless\</HeadlessPath-->
2828
</PropertyGroup>
2929

3030
<ItemGroup>
3131
<Reference Include="ResoniteModLoader">
3232
<HintPath>$(ResonitePath)Libraries/ResoniteModLoader.dll</HintPath>
3333
</Reference>
3434
<Reference Include="FrooxEngine">
35-
<HintPath>$(ResonitePath)Headless/FrooxEngine.dll</HintPath>
35+
<HintPath>$(ResonitePath)Resonite_Data/Managed/FrooxEngine.dll</HintPath>
3636
</Reference>
3737
<Reference Include="Elements.Core">
38-
<HintPath>$(ResonitePath)Headless/Elements.Core.dll</HintPath>
38+
<HintPath>$(ResonitePath)Resonite_Data/Managed/Elements.Core.dll</HintPath>
3939
</Reference>
4040
<Reference Include="Elements.Assets">
41-
<HintPath>$(ResonitePath)Headless/Elements.Assets.dll</HintPath>
41+
<HintPath>$(ResonitePath)Resonite_Data/Managed/Elements.Assets.dll</HintPath>
4242
</Reference>
4343
</ItemGroup>
4444

0 commit comments

Comments
 (0)