Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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