Skip to content

Commit

Permalink
Normalize paths in .csproj files to use \ instead of /
Browse files Browse the repository at this point in the history
  • Loading branch information
KubaZ2 committed Jan 17, 2025
1 parent 4276b54 commit 0997f91
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="../../Resources/NuGet/README.md" Pack="true" PackagePath=""></None>
<None Include="../../Resources/Logo/png/SmallSquare.png" Pack="true" PackagePath="" />
<None Include="..\..\Resources\NuGet\README.md" Pack="true" PackagePath=""></None>
<None Include="..\..\Resources\Logo\png\SmallSquare.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="../../Resources/NuGet/README.md" Pack="true" PackagePath=""></None>
<None Include="../../Resources/Logo/png/SmallSquare.png" Pack="true" PackagePath="" />
<None Include="..\..\Resources\NuGet\README.md" Pack="true" PackagePath=""></None>
<None Include="..\..\Resources\Logo\png\SmallSquare.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
Expand All @@ -34,7 +34,7 @@
</ItemGroup>

<ItemGroup>
<Compile Include="../NetCord.Hosting/GlobalUsings.cs" />
<Compile Include="..\NetCord.Hosting\GlobalUsings.cs" />
</ItemGroup>

</Project>
12 changes: 6 additions & 6 deletions Hosting/NetCord.Hosting/NetCord.Hosting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="../../Resources/NuGet/README.md" Pack="true" PackagePath=""></None>
<None Include="../../Resources/Logo/png/SmallSquare.png" Pack="true" PackagePath="" />
<None Include="..\..\Resources\NuGet\README.md" Pack="true" PackagePath=""></None>
<None Include="..\..\Resources\Logo\png\SmallSquare.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
Expand All @@ -39,10 +39,10 @@
</ItemGroup>

<ItemGroup>
<Compile Include="../../NetCord.Services/Helpers/ServiceProviderHelper.cs" />
<Compile Include="../../NetCord.Services/Helpers/ParameterHelper.cs" />
<Compile Include="../../NetCord/Gateway/GatewayClientConfigurationFactory.cs" />
<Compile Include="../../NetCord/Gateway/ShardedGatewayClientConfigurationFactory.cs" />
<Compile Include="..\..\NetCord.Services\Helpers\ServiceProviderHelper.cs" />
<Compile Include="..\..\NetCord.Services\Helpers\ParameterHelper.cs" />
<Compile Include="..\..\NetCord\Gateway\GatewayClientConfigurationFactory.cs" />
<Compile Include="..\..\NetCord\Gateway\ShardedGatewayClientConfigurationFactory.cs" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions NetCord.Services/NetCord.Services.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="../Resources/NuGet/README.md" Pack="true" PackagePath=""></None>
<None Include="../Resources/Logo/png/SmallSquare.png" Pack="true" PackagePath="" />
<None Include="..\Resources\NuGet\README.md" Pack="true" PackagePath=""></None>
<None Include="..\Resources\Logo\png\SmallSquare.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions NetCord/NetCord.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="../Resources/NuGet/README.md" Pack="true" PackagePath=""></None>
<None Include="../Resources/Logo/png/SmallSquare.png" Pack="true" PackagePath="" />
<None Include="..\Resources\NuGet\README.md" Pack="true" PackagePath=""></None>
<None Include="..\Resources\Logo\png\SmallSquare.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 0997f91

Please sign in to comment.