Skip to content

Commit

Permalink
Revert "Fixed Props paths for *.csproj builds (#3320)" (#3352)
Browse files Browse the repository at this point in the history
This reverts commit 2bd2a45.
  • Loading branch information
cschuchardt88 authored Jun 26, 2024
1 parent b2f060f commit 2d0395f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="..\..\.neo\neo.png" Pack="true" Visible="false" PackagePath=""/>
<None Include="..\..\.neo\README.md" Pack="true" Visible="false" PackagePath=""/>
<None Include="$(SolutionDir)/.neo/neo.png" Pack="true" Visible="false" PackagePath=""/>
<None Include="$(SolutionDir)/.neo/README.md" Pack="true" Visible="false" PackagePath=""/>
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/Plugins/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />

<ItemGroup>
<None Include="..\..\..\.neo\neo.png" Pack="true" Visible="false" PackagePath=""/>
<None Include="..\..\..\.neo\README.md" Pack="true" Visible="false" PackagePath=""/>
<None Include="$(SolutionDir)/.neo/neo.png" Pack="true" Visible="false" PackagePath=""/>
<None Include="$(SolutionDir)/.neo/README.md" Pack="true" Visible="false" PackagePath=""/>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Neo\Neo.csproj" />
<ProjectReference Include="../../Neo/Neo.csproj" />
</ItemGroup>

</Project>

0 comments on commit 2d0395f

Please sign in to comment.