Skip to content

Commit 1163543

Browse files
committed
Fix NuGet pack output path and settings
1 parent 55bb2bf commit 1163543

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/Lucene.Net.CodeAnalysis.Dev/Lucene.Net.CodeAnalysis.Dev.csproj

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<IsPackable>false</IsPackable>
65
<Nullable>enable</Nullable>
76
<LangVersion>latest</LangVersion>
87
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
98
<IsRoslynComponent>true</IsRoslynComponent>
109
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
10+
<IncludeBuildOutput>false</IncludeBuildOutput>
11+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
12+
<NoPackageAnalysis>true</NoPackageAnalysis>
13+
<DevelopmentDependency>true</DevelopmentDependency>
1114

1215
<Version>1.0.0</Version>
1316

@@ -47,4 +50,8 @@
4750
<SignAssembly>true</SignAssembly>
4851
</PropertyGroup>
4952

53+
<ItemGroup>
54+
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
55+
</ItemGroup>
56+
5057
</Project>

0 commit comments

Comments
 (0)