im testing the nuget package, and the generators all work fine except for one that uses Microsoft.Extensions.Primitives
0>CSC: Warning CS8784 : Generator 'AssetGenerator' failed to initialize. It will not contribute to the output and compilation errors may occur as a result. Exception was of type 'FileNotFoundException' with message 'Could not load file or assembly 'Microsoft.Extensions.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified.'.
0>CSC: Warning CS8784 : Generator 'AssetGenerator' failed to initialize. It will not contribute to the output and compilation errors may occur as a result. Exception was of type 'FileNotFoundException' with message 'Could not load file or assembly 'Microsoft.Extensions.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified.'.
<HintPath>..\..\AnalyzerExperiment\AnalyzerExperiment\bin\Debug\netstandard2.0\AnalyzerExperiment.dll</HintPath> <!-- this generates nothing-->
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\AnalyzerExperiment\AnalyzerExperiment\AnalyzerExperiment.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/> <!-- this however executes the generator-->
<HintPath>..\..\AnalyzerExperiment\AnalyzerExperiment\bin\Debug\netstandard2.0\AnalyzerExperiment.dll</HintPath> <!-- this generates nothing-->
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\AnalyzerExperiment\AnalyzerExperiment\AnalyzerExperiment.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/> <!-- this however executes the generator-->
</ItemGroup>
</Project>
ive ensured the dll is in the build output and all, im really unsure of whats happening, if this is an actual issue or if im just a little dumb