Skip to content

Commit

Permalink
Use local project references instead of gitmodules. Too many issues w…
Browse files Browse the repository at this point in the history
…ith recursive project building
  • Loading branch information
ceilingwaffle committed Apr 29, 2019
1 parent bd070a3 commit 24cd087
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 29 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[submodule "submodules/OsuStatePresenter"]
path = submodules/OsuStatePresenter
url = [email protected]:ceilingwaffle/OsuStatePresenter.git
[submodule "submodules/DependentValuePresentationFramework"]
path = submodules/DependentValuePresentationFramework
url = [email protected]:ceilingwaffle/DependentValuePresentationFramework.git
[submodule "submodules/OsuStatePresenter"]
path = submodules/OsuStatePresenter
url = [email protected]:ceilingwaffle/OsuStatePresenter.git
[submodule "submodules/ProcessMemoryDataFinder"]
path = submodules/ProcessMemoryDataFinder
url = [email protected]:Piotrekol/ProcessMemoryDataFinder.git
10 changes: 8 additions & 2 deletions Focusu.GUI/Focusu.GUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,16 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\dvpf\DVPF.Core\DVPF.Core.csproj" />
<ProjectReference Include="..\..\osu-state-presenter\OsuStatePresenter\OsuStatePresenter.csproj" />
<ProjectReference Include="..\..\DependentValuePresentationFramework\DVPF.Core\DVPF.Core.csproj" />
<ProjectReference Include="..\..\OsuStatePresenter\OsuStatePresenter\OsuStatePresenter.csproj" />
</ItemGroup>

<!--<Target Name="BuildOtherProjects">
<MSBuild Projects="@(ProjectReference)" Targets="Build">
<Output TaskParameter="TargetOutputs" ItemName="AssembliesBuiltByChildProjects" />
</MSBuild>
</Target>-->

<ItemGroup>
<Resource Include="resources\images\small\Monitor_black.png" />
<Resource Include="resources\images\small\Monitor_white.png" />
Expand Down
5 changes: 3 additions & 2 deletions Focusu.GUI/Properties/PublishProfiles/FolderProfile.pubxml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<Platform>x86</Platform>
<TargetFramework>netcoreapp3.0</TargetFramework>
<PublishDir>bin\Release\netcoreapp3.0\publish\</PublishDir>
<SelfContained>false</SelfContained>
<_IsPortable>true</_IsPortable>
<SelfContained>true</SelfContained>
<_IsPortable>false</_IsPortable>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
</PropertyGroup>
</Project>
40 changes: 20 additions & 20 deletions Focusu.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Focusu.GUI", "Focusu.GUI\Fo
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "submodules", "submodules", "{EF004CBC-C8BC-4DB6-A7AA-72D3063B75B1}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OsuStatePresenter", "..\osu-state-presenter\OsuStatePresenter\OsuStatePresenter.csproj", "{7D1D9BA3-8300-4048-AA67-CA9FD91199FC}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DVPF.Core", "..\DependentValuePresentationFramework\DVPF.Core\DVPF.Core.csproj", "{EDE10745-1D26-4250-B887-7A6665687150}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DVPF.Core", "..\dvpf\DVPF.Core\DVPF.Core.csproj", "{E9E5A94A-2912-4262-83DD-8DC8A72C435B}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OsuStatePresenter", "..\OsuStatePresenter\OsuStatePresenter\OsuStatePresenter.csproj", "{1612D59E-2701-4421-875D-4D723D66C206}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProcessMemoryDataFinder", "submodules\ProcessMemoryDataFinder\ProcessMemoryDataFinder\ProcessMemoryDataFinder.csproj", "{9960D641-300A-432C-AA04-C351A99B9ADB}"
EndProject
Expand All @@ -31,22 +31,22 @@ Global
{E2648F48-16DF-4B2C-A602-E9503A09D19C}.Release|Any CPU.Build.0 = Release|Any CPU
{E2648F48-16DF-4B2C-A602-E9503A09D19C}.Release|x86.ActiveCfg = Release|Any CPU
{E2648F48-16DF-4B2C-A602-E9503A09D19C}.Release|x86.Build.0 = Release|Any CPU
{7D1D9BA3-8300-4048-AA67-CA9FD91199FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7D1D9BA3-8300-4048-AA67-CA9FD91199FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7D1D9BA3-8300-4048-AA67-CA9FD91199FC}.Debug|x86.ActiveCfg = Debug|x86
{7D1D9BA3-8300-4048-AA67-CA9FD91199FC}.Debug|x86.Build.0 = Debug|x86
{7D1D9BA3-8300-4048-AA67-CA9FD91199FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7D1D9BA3-8300-4048-AA67-CA9FD91199FC}.Release|Any CPU.Build.0 = Release|Any CPU
{7D1D9BA3-8300-4048-AA67-CA9FD91199FC}.Release|x86.ActiveCfg = Release|x86
{7D1D9BA3-8300-4048-AA67-CA9FD91199FC}.Release|x86.Build.0 = Release|x86
{E9E5A94A-2912-4262-83DD-8DC8A72C435B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E9E5A94A-2912-4262-83DD-8DC8A72C435B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E9E5A94A-2912-4262-83DD-8DC8A72C435B}.Debug|x86.ActiveCfg = Debug|x86
{E9E5A94A-2912-4262-83DD-8DC8A72C435B}.Debug|x86.Build.0 = Debug|x86
{E9E5A94A-2912-4262-83DD-8DC8A72C435B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E9E5A94A-2912-4262-83DD-8DC8A72C435B}.Release|Any CPU.Build.0 = Release|Any CPU
{E9E5A94A-2912-4262-83DD-8DC8A72C435B}.Release|x86.ActiveCfg = Release|x86
{E9E5A94A-2912-4262-83DD-8DC8A72C435B}.Release|x86.Build.0 = Release|x86
{EDE10745-1D26-4250-B887-7A6665687150}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EDE10745-1D26-4250-B887-7A6665687150}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EDE10745-1D26-4250-B887-7A6665687150}.Debug|x86.ActiveCfg = Debug|x86
{EDE10745-1D26-4250-B887-7A6665687150}.Debug|x86.Build.0 = Debug|x86
{EDE10745-1D26-4250-B887-7A6665687150}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EDE10745-1D26-4250-B887-7A6665687150}.Release|Any CPU.Build.0 = Release|Any CPU
{EDE10745-1D26-4250-B887-7A6665687150}.Release|x86.ActiveCfg = Release|x86
{EDE10745-1D26-4250-B887-7A6665687150}.Release|x86.Build.0 = Release|x86
{1612D59E-2701-4421-875D-4D723D66C206}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1612D59E-2701-4421-875D-4D723D66C206}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1612D59E-2701-4421-875D-4D723D66C206}.Debug|x86.ActiveCfg = Debug|x86
{1612D59E-2701-4421-875D-4D723D66C206}.Debug|x86.Build.0 = Debug|x86
{1612D59E-2701-4421-875D-4D723D66C206}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1612D59E-2701-4421-875D-4D723D66C206}.Release|Any CPU.Build.0 = Release|Any CPU
{1612D59E-2701-4421-875D-4D723D66C206}.Release|x86.ActiveCfg = Release|x86
{1612D59E-2701-4421-875D-4D723D66C206}.Release|x86.Build.0 = Release|x86
{9960D641-300A-432C-AA04-C351A99B9ADB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9960D641-300A-432C-AA04-C351A99B9ADB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9960D641-300A-432C-AA04-C351A99B9ADB}.Debug|x86.ActiveCfg = Debug|Any CPU
Expand All @@ -68,8 +68,8 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{7D1D9BA3-8300-4048-AA67-CA9FD91199FC} = {EF004CBC-C8BC-4DB6-A7AA-72D3063B75B1}
{E9E5A94A-2912-4262-83DD-8DC8A72C435B} = {EF004CBC-C8BC-4DB6-A7AA-72D3063B75B1}
{EDE10745-1D26-4250-B887-7A6665687150} = {EF004CBC-C8BC-4DB6-A7AA-72D3063B75B1}
{1612D59E-2701-4421-875D-4D723D66C206} = {EF004CBC-C8BC-4DB6-A7AA-72D3063B75B1}
{9960D641-300A-432C-AA04-C351A99B9ADB} = {EF004CBC-C8BC-4DB6-A7AA-72D3063B75B1}
{D117800F-072D-4AE4-9679-3E2A129A1A3C} = {EF004CBC-C8BC-4DB6-A7AA-72D3063B75B1}
EndGlobalSection
Expand Down
1 change: 0 additions & 1 deletion submodules/DependentValuePresentationFramework
1 change: 0 additions & 1 deletion submodules/OsuStatePresenter
Submodule OsuStatePresenter deleted from 753ced

0 comments on commit 24cd087

Please sign in to comment.