Skip to content

Commit

Permalink
fix bad paths
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell committed Dec 19, 2023
1 parent dab2d47 commit 122b5f5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions DragonFruit.Data.Roslyn/DragonFruit.Data.Roslyn.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
<PackageId>DragonFruit.Data.Roslyn</PackageId>
<Description>Source generation and analysis tools for DragonFruit.Data</Description>
</PropertyGroup>

<!-- OutputItemType - see https://stackoverflow.com/a/71397443 -->
<ItemGroup>
<ProjectReference Include="..\DragonFruit.Data\DragonFruit.Data.csproj" OutputItemType="Analyzer"/>
</ItemGroup>

<ItemGroup>
<!-- readme.md-->
<None Include="readme.md" Pack="true" PackagePath="." Visible="false"/>
<None Include="readme.md" Pack="true" PackagePath="docs" Visible="false"/>

<!-- Liquid templates -->
<EmbeddedResource Include="Templates\*.liquid"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="." Visible="false"/>
<None Include="readme.md" Pack="true" PackagePath="docs" Visible="false"/>
</ItemGroup>

<Import Project="..\res\DragonFruit.Data.Nuget.props"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\DragonFruit.Data\DragonFruit.Data.csproj" />
<ProjectReference Include="..\DragonFruit.Data\DragonFruit.Data.csproj"/>
</ItemGroup>

<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="." Visible="false"/>
<None Include="readme.md" Pack="true" PackagePath="docs" Visible="false"/>
</ItemGroup>

<Import Project="..\res\DragonFruit.Data.Nuget.props"/>
Expand Down
2 changes: 1 addition & 1 deletion DragonFruit.Data/DragonFruit.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</ItemGroup>

<ItemGroup>
<None Include="../readme.md" Pack="true" Path="." Visible="false"/>
<None Include="../readme.md" Pack="true" PackagePath="docs" Visible="false"/>
</ItemGroup>

<Import Project="../res/DragonFruit.Data.Nuget.props"/>
Expand Down
2 changes: 1 addition & 1 deletion res/DragonFruit.Data.Nuget.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageReadmeFile>docs/readme.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>api, rest, http, sourcegen, client, httpclient</PackageTags>
<PackageProjectUrl>https://github.com/dragonfruitnetwork/rest-client</PackageProjectUrl>
Expand Down

0 comments on commit 122b5f5

Please sign in to comment.