Skip to content

Commit

Permalink
Change folder path to avoid implicit NuGet inclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
sharwell committed Aug 19, 2021
1 parent 482cf42 commit 2a1586d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Refit/Refit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
<None Include="targets\refit.targets" PackagePath="build\netstandard2.0" Pack="true" />

<None Include="..\InterfaceStubGenerator.Roslyn38\bin\$(Configuration)\netstandard2.0\InterfaceStubGeneratorV1.dll"
PackagePath="analyzers\cs\roslyn38"
PackagePath="build\analyzers\roslyn38"
Pack="true"
Visible="false" />

<None Include="..\InterfaceStubGenerator.Roslyn40\bin\$(Configuration)\netstandard2.0\InterfaceStubGeneratorV2.dll"
PackagePath="analyzers\cs\roslyn40"
PackagePath="build\analyzers\roslyn40"
Pack="true"
Visible="false" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Refit/targets/refit.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<Choose>
<When Condition="'$(VisualStudioVersion)' >= '17.0' AND '$(DesignTimeBuild)' == 'True'">
<ItemGroup>
<Analyzer Include="$(MSBuildThisFileDirectory)../../analyzers/cs/roslyn40/*.dll" />
<Analyzer Include="$(MSBuildThisFileDirectory)../../build/analyzers/cs/roslyn40/*.dll" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<Analyzer Include="$(MSBuildThisFileDirectory)../../analyzers/cs/roslyn38/*.dll" />
<Analyzer Include="$(MSBuildThisFileDirectory)../../build/analyzers/cs/roslyn38/*.dll" />
</ItemGroup>
</Otherwise>
</Choose>
Expand Down

0 comments on commit 2a1586d

Please sign in to comment.