Skip to content

Commit 6e6521f

Browse files
committed
fix: No more pulling in the analyzer dependencies
1 parent 4848d8a commit 6e6521f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Catglobe.ResXFileCodeGenerator/Catglobe.ResXFileCodeGenerator.csproj

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<IncludeBuildOutput>false</IncludeBuildOutput>
6+
<Description>Converts Resx files into ultra fast runtime lookups using Source Generator</Description>
67
<LangVersion>latest</LangVersion>
78
<Nullable>enable</Nullable>
89
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
@@ -22,19 +23,16 @@
2223
<IsRoslynComponent>true</IsRoslynComponent>
2324
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
2425
<CheckEolTargetFramework>false</CheckEolTargetFramework>
25-
<IncludeReferencedProjects>true</IncludeReferencedProjects>
2626

2727
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2828
<EmbedUntrackedSources>false</EmbedUntrackedSources>
29-
<IncludeSymbols>true</IncludeSymbols>
3029
<DebugType>portable</DebugType>
3130
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
3231
<NuGetAudit>true</NuGetAudit>
3332
<NuGetAuditMode>all</NuGetAuditMode>
3433
<NuGetAuditLevel>low</NuGetAuditLevel>
3534
<DeterministicSourcePaths>true</DeterministicSourcePaths>
3635
<PackageReadmeFile>README.md</PackageReadmeFile>
37-
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
3836
</PropertyGroup>
3937

4038
<ItemGroup>
@@ -45,13 +43,19 @@
4543
<None Include="..\README.md" Pack="true" PackagePath="" />
4644
</ItemGroup>
4745

46+
<ItemDefinitionGroup>
47+
<PackageReference>
48+
<PrivateAssets>all</PrivateAssets>
49+
</PackageReference>
50+
</ItemDefinitionGroup>
51+
4852
<ItemGroup>
4953
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
5054
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" />
5155
</ItemGroup>
5256

5357
<ItemGroup>
54-
<ProjectReference Include="..\Catglobe.ResXFileCodeGenerator.Attributes\Catglobe.ResXFileCodeGenerator.Attributes.csproj" PrivateAssets="All" />
58+
<ProjectReference Include="..\Catglobe.ResXFileCodeGenerator.Attributes\Catglobe.ResXFileCodeGenerator.Attributes.csproj" />
5559
</ItemGroup>
5660

5761
<ItemGroup>

0 commit comments

Comments
 (0)