Skip to content

Commit

Permalink
chore: Add the source path to be shared to each csproj file
Browse files Browse the repository at this point in the history
  • Loading branch information
s2quake committed Jul 18, 2024
1 parent 13e10d4 commit 66b37fe
Show file tree
Hide file tree
Showing 9 changed files with 179 additions and 190 deletions.
333 changes: 153 additions & 180 deletions libplanet-console.sln

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<ProjectReference Include="..\LibplanetConsole.Clients\LibplanetConsole.Clients.csproj" />
</ItemGroup>

<Import Project="..\..\shared\LibplanetConsole.Examples.Sharing\LibplanetConsole.Examples.Sharing.projitems" Label="Shared" />
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Examples\**\*.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
<PackageReference Include="Serilog.Sinks.File" Version="3.1.1" />
</ItemGroup>

<Import Project="..\..\shared\LibplanetConsole.Clients.Sharing\LibplanetConsole.Clients.Sharing.projitems" Label="Shared" />
<Import Project="..\..\shared\LibplanetConsole.Nodes.Sharing\LibplanetConsole.Nodes.Sharing.projitems" Label="Shared" />
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Nodes\**\*.cs" />
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Clients\**\*.cs" />
</ItemGroup>

<PropertyGroup>
<DefineConstants>LIBPLANET_CLIENT</DefineConstants>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<ProjectReference Include="..\LibplanetConsole.Consoles\LibplanetConsole.Consoles.csproj" />
</ItemGroup>

<Import Project="..\..\shared\LibplanetConsole.Examples.Sharing\LibplanetConsole.Examples.Sharing.projitems" Label="Shared" />
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Examples\**\*.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<ProjectReference Include="..\LibplanetConsole.Consoles\LibplanetConsole.Consoles.csproj" />
</ItemGroup>

<Import Project="..\..\shared\LibplanetConsole.Explorer.Sharing\LibplanetConsole.Explorer.Sharing.projitems" Label="Shared" />
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Explorer\**\*.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
<PackageReference Include="Serilog.Sinks.File" Version="3.1.1" />
</ItemGroup>

<Import Project="..\..\shared\LibplanetConsole.Nodes.Sharing\LibplanetConsole.Nodes.Sharing.projitems" Label="Shared" />
<Import Project="..\..\shared\LibplanetConsole.Clients.Sharing\LibplanetConsole.Clients.Sharing.projitems" Label="Shared" />
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Nodes\**\*.cs" />
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Clients\**\*.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<ProjectReference Include="..\LibplanetConsole.Nodes\LibplanetConsole.Nodes.csproj" />
</ItemGroup>

<Import Project="..\..\shared\LibplanetConsole.Examples.Sharing\LibplanetConsole.Examples.Sharing.projitems" Label="Shared" />
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Examples\**\*.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
<PackageReference Include="Serilog.AspNetCore" Version="2.1.1" />
</ItemGroup>

<Import Project="..\..\shared\LibplanetConsole.Explorer.Sharing\LibplanetConsole.Explorer.Sharing.projitems" Label="Shared" />
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Explorer\**\*.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<PackageReference Include="Serilog.Sinks.File" Version="3.1.1" />
</ItemGroup>

<Import Project="..\..\shared\LibplanetConsole.Nodes.Sharing\LibplanetConsole.Nodes.Sharing.projitems" Label="Shared" />
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)..\..\shared\LibplanetConsole.Nodes\**\*.cs" />
</ItemGroup>

</Project>

0 comments on commit 66b37fe

Please sign in to comment.