Skip to content

Commit

Permalink
Fix package dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MattKotsenas committed Jun 4, 2024
1 parent 0b7fcd6 commit 983bff5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
| |-- dotnet
| | |-- cs
| | | |-- Moq.Analyzers.dll
|-- lib
| |-- netstandard2.0
| | |-- Moq.Analyzers.dll
|-- tools
| |-- install.ps1
| |-- uninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,5 @@
<copyright>2015-2019 Andrey Lipatkin</copyright>
<tags>moq, mock, test, analyzers</tags>
<repository type="git" url="https://github.com/********/moq.analyzers.git" commit="****************************************" />
<dependencies>
<group targetFramework=".NETStandard2.0" />
</dependencies>
</metadata>
</package>
3 changes: 2 additions & 1 deletion Source/Moq.Analyzers/Moq.Analyzers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<AssemblyName>Moq.Analyzers</AssemblyName>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<NoPackageAnalysis>true</NoPackageAnalysis>
<IncludeBuildOutput>false</IncludeBuildOutput><!-- Don't place the output assembly in the package's lib/ folder -->
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking><!-- Don't add the TargetFramework as a package dependency -->
</PropertyGroup>

<PropertyGroup Label="Package metadata">
Expand Down

0 comments on commit 983bff5

Please sign in to comment.